/*
Templete Name: Bizada
Templete URI: http://www.themechampion.com/templates/bizada_html_landing_page/theme/index.html
Author: ThemeChampion
Description: Business Consulting HTML Template
Version: 1.6
/*===================================================================== 
Table of Content: 
01 - Header
02 - Button Effects 
03 - Slider
04 - MSlide
05 - About Section
=====================================================================*/
@import url('https://fonts.googleapis.com/css?family=Poppins:300,400,400i,500,500i,600,600i,700,700i&display=swap');
@import url('https://fonts.googleapis.com/css?family=Open+Sans:300,300i,400,400i,600&display=swap');

/*-------------------------------------------------------------------------------------------------------------------------------*/
/*01 - TT-HEADER */
/*-------------------------------------------------------------------------------------------------------------------------------*/
.tt-header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  background: #053357;
  z-index: 101;
}

.tt-header ul {
  padding-left: 0;
  margin-bottom: 0;
}


.tt-header .logo {
  display: inline-block;
  position: relative;
  line-height: 70px;
  z-index: 101;
  transition: none;
}

.tt-header .logo img {
  max-height: 75px !important;
  height: auto;
  width: auto;
}

/*general navigation*/
.tt-header .main-nav>ul>li>a {
  font-family: 'Poppins', sans-serif;
  font-size: 18px;
  line-height: 28px;
  font-weight: 500;
  color: #434343;
  letter-spacing: 0.30px;
  text-transform: initial;
  transition: none;
}

/* Adicione esta regra ao seu arquivo assets/css/style.css */
.margin-top-small {
    margin-top: 15px; /* Você pode ajustar o valor (15px) para controlar o tamanho do espaço */
    /* Opcional: remover a margem inferior padrão do <p> se não for necessária */
    /* margin-bottom: 0; */
}

/* Adicione esta regra ao seu arquivo assets/css/style.css */
.text-red {
    color: red; /* Você pode usar um código de cor hexadecimal como #FF0000 se quiser um vermelho específico */
}

/* Adicione esta regra ao seu arquivo assets/css/style.css */
.text-blue-light {
    color: #9b111e; /* Este é um exemplo de azul médio claro. Você pode ajustar o código hex. */
    /* Ex: #6495ED (CornflowerBlue), #87CEFA (Light Sky Blue), ou um azul personalizado */
}

/* Regra mais específica para garantir a cor azul claro apenas na primeira frase */
.strip.bg-red h3 em span.text-blue-light {
    color: #9b111e; /* O azul médio claro que você quer */
    /* Se necessário, adicione !important como último recurso, mas tente evitar: */
    /* color: #77BBDD !important; */
}

/* Opcional: Garantir que a segunda frase continue branca, se for o caso */
/* Isso depende se a cor branca já está sendo aplicada ao <p> por uma regra geral */
 .strip.bg-red h3 em p {
     color: white; /* Ou a cor desejada para a segunda frase */
 }


.tt-header .main-nav>ul>li.active>a, .tt-header .main-nav>ul>li:hover>a {
  color: #fff;
  text-decoration: none;
}

/*nav-more*/
.tt-header .nav-more {
  display: inline-block;
  font-size: 0;
  padding-top: 40px;
  padding-bottom: 30px;
  margin-left: 12px;
  transition: none;
}

/*top line*/
.tt-header .top-line-inner {
  border-bottom: 1px solid #d9d9d9;
}

.tt-header .top-line-left {
  float: left;
}

.tt-header .top-line-right {
  float: right;
}

.tt-header .top-line-left:after, .tt-header .top-line-right:after {
  content: '';
  display: inline-block;
  width: 0;
  height: 48px;
  vertical-align: middle;
}

.tt-header .top-info {
  display: inline-block;
  position: relative;
  font-size: 15px;
  letter-spacing: 0.3px;
  padding-right: 20px;
  margin-right: 20px;
  vertical-align: middle;
}

.tt-header .top-info:before {
  content: '';
  display: block;
  position: absolute;
  top: 50%;
  right: 0;
  width: 1px;
  height: 16px;
  margin-top: -8px;
  background: #adadad;
}

.tt-header .top-info:last-child {
  margin-right: 0;
  padding-right: 0;
}

.tt-header .top-info:last-child:before {
  display: none;
}

.tt-header .top-info a:hover {
  color: #242424;
}

.tt-header .top-social li {
  display: inline-block;
  margin-right: 12px;
}

.tt-header .top-social li:last-child {
  margin-right: 0;
}

.tt-header .top-social a:hover {
  color: #30c3f4;
}

body {
  overflow-x: hidden;
}

/*cmn-toggle-switch*/
.cmn-toggle-switch:focus {
  outline: none;
}

.tt-header .cmn-toggle-switch {
  display: none;
  position: relative;
  float: right;
  margin-top: 12px;
  padding: 0;
  width: 25px;
  height: 17px;
  cursor: pointer;
  z-index: 101;
}

.tt-header .cmn-toggle-switch span {
  display: block;
  position: absolute;
  top: 7px;
  left: 0;
  right: 0;
  height: 3px;
  background: #fff;
  -webkit-transition: all 300ms ease-in-out;
  -moz-transition: all 300ms ease-in-out;
  transition: all 300ms ease-in-out;
}

.tt-header .cmn-toggle-switch::before, .tt-header .cmn-toggle-switch::after {
  content: "";
  position: absolute;
  display: block;
  top: 7px;
  left: 0;
  width: 100%;
  height: 3px;
  background: #fff;
  -webkit-transition: all 300ms ease-in-out;
  -moz-transition: all 300ms ease-in-out;
  transition: all 300ms ease-in-out;
}

.tt-header .cmn-toggle-switch::before {
  margin-top: -7px;
}

.tt-header .cmn-toggle-switch::after {
  margin-top: 7px;
}

.tt-header .cmn-toggle-switch.active::before {
  -webkit-transform: translateY(7px) rotate(45deg);
  -moz-transform: translateY(7px) rotate(45deg);
  -ms-transform: translateY(7px) rotate(45deg);
  transform: translateY(7px) rotate(45deg);
  -webkit-transform-origin: center center;
  -moz-transform-origin: center center;
  -ms-transform-origin: center center;
  transform-origin: center center;
}

.tt-header .cmn-toggle-switch.active::after {
  -webkit-transform: translateY(-7px) rotate(-45deg);
  -moz-transform: translateY(-7px) rotate(-45deg);
  -ms-transform: translateY(-7px) rotate(-45deg);
  transform: translateY(-7px) rotate(-45deg);
  -webkit-transform-origin: center center;
  -moz-transform-origin: center center;
  -ms-transform-origin: center center;
  transform-origin: center center;
}

.tt-header .cmn-toggle-switch.active span {
  opacity: 0;
}

.tt-header-margin {
  height: 149px;
}

@media (min-width: 992px) {
  .tt-header .top-inner {
    position: relative;
    float: left;
    padding: 15px 0;
  }

  .tt-header .toggle-block {
    display: block !important;
    float: right;
  }

  .tt-header .toggle-block .container {
    width: 100%;
    padding-left: 0;
    padding-right: 0;
  }

  .tt-header .main-nav {
    display: inline-block;
    vertical-align: top;
  }

  .tt-header .main-nav>ul>li {
    position: relative;
    float: left;
    list-style: none;
  }

  .tt-header .main-nav>ul>li.active {
    background: #f65245;
  }

  .tt-header .header_03 .main-nav>ul>li.active {
    background: transparent;
  }

  .tt-header .header_03 .main-nav>ul>li:hover {
    background: transparent;
  }

  .tt-header .header_03 .main-nav>ul>li>a:hover {
    color: #f65245;
  }

  .tt-header .main-nav>ul>li>a {
    display: block;
    position: relative;
    padding: 36px 14px;
  }

  .tt-header .main-nav>ul>li:last-child>a:before {
    display: none;
  }

  /*2nd level*/
  .tt-header .main-nav>ul>li>ul {
    display: block !important;
    position: absolute;
    top: 100%;
    left: 0;
    width: 256px;
    background: #f1f1f1;
    visibility: hidden;
    opacity: 0;
    -webkit-transform: translateY(40px);
    -moz-transform: translateY(40px);
    -ms-transform: translateY(40px);
    transform: translateY(40px);
    -webkit-transition: all 300ms ease-in-out;
    -moz-transition: all 300ms ease-in-out;
    transition: all 300ms ease-in-out;
  }

  .tt-header .main-nav>ul>li:hover>ul {
    visibility: visible;
    opacity: 1;
    -webkit-transform: translateY(0px);
    -moz-transform: translateY(0px);
    -ms-transform: translateY(0px);
    transform: translateY(0px);
  }

  .tt-header .main-nav>ul>li>ul>li {
    border-bottom: 1px solid #dddddd54;
    text-align: left;
    list-style: none;
  }

  .tt-header .main-nav>ul>li>ul>li:last-child {
    border-bottom: 0;
  }

  .tt-header .main-nav>ul>li>ul>li>a {
    display: block;
    position: relative;
    font-size: 16px;
    line-height: 18px;
    font-weight: 400;
    color: #2a2a2a;
    letter-spacing: 0.30px;
    padding: 15px 19px 14px 31px;
    text-decoration: none;
    font-family: 'Poppins', sans-serif;
    ;
  }

  /*3rd level*/
  .tt-header .main-nav>ul>li>ul>li {
    position: relative;
  }

  .tt-header .main-nav>ul>li>ul>li>ul {
    display: block !important;
    position: absolute;
    top: 0;
    left: 100%;
    width: 256px;
    background: #f1f1f1;
    visibility: hidden;
    opacity: 0;
    -webkit-transform: translateY(40px);
    -moz-transform: translateY(40px);
    -ms-transform: translateY(40px);
    transform: translateY(40px);
    -webkit-transition: all 300ms ease-in-out;
    -moz-transition: all 300ms ease-in-out;
    transition: all 300ms ease-in-out;
    list-style: none;
  }

  .tt-header .main-nav>ul>li:nth-last-child(1)>ul>li>ul, .tt-header .main-nav>ul>li:nth-last-child(2)>ul>li>ul {
    left: auto;
    right: 100%;
    margin-right: 0;
  }

  .tt-header .main-nav>ul>li>ul>li:hover>ul {
    visibility: visible;
    opacity: 1;
    -webkit-transform: translateY(0px);
    -moz-transform: translateY(0px);
    -ms-transform: translateY(0px);
    transform: translateY(0px);
  }

  .tt-header .main-nav>ul>li>ul>li>ul>li:last-child {
    border-bottom: 0;
  }

  .tt-header .main-nav>ul>li>ul>li>ul>li {
    border-bottom: 1px solid #dddddd54;
    text-align: left;
  }

  .tt-header .main-nav>ul>li>ul>li>ul>li>a {
    display: block;
    position: relative;
    font-size: 16px;
    line-height: 18px;
    font-weight: 500;
    color: #2a2a2a;
    letter-spacing: 0.30px;
    padding: 15px 19px 14px 31px;
    font-family: 'Poppins', sans-serif;
    ;
  }

  .tt-header .main-nav>ul>li>ul>li>ul>li>a:hover {
    background: #053357;
    color: #fff;
    text-decoration: none;
  }

  .tt-header .menu-toggle {
    display: none;
  }

  /*stick*/
  .tt-header.stick {
    position: fixed;
    left: 0;
    width: 100%;
  }

  .tt-header.stick .logo {
    height: 42px;
    line-height: 42px;
  }

  .tt-header.stick .nav-more {
    padding: 16px 0;
  }

  .tt-header .top-line-right {
    float: right;
    padding-top: 10px;
    vertical-align: middle;
  }

  .responsive_logo {
    display: none;
  }

  .tt-header {
    position: relative;
    background: #053357;
  }

  .tt-header.stick {
    position: fixed;
  }

  .tt-header .main-nav>ul>li>a {
    font-weight: 600;
    font-size: 15px;
    color: #fff;
    text-transform: uppercase;
    padding: 18px 25px;
    font-family: 'Open Sans', sans-serif;
    letter-spacing: 0.30px;
  }

  .tt-header .main-nav>ul>li:hover {
    background: #f65245;
  }

  .tt-header .toggle-block {
    display: block !important;
    float: left;
  }

  .tt-header .top-inner {
    float: right;
    padding-bottom: 0;
  }

  .tt-header .top-info a {
    color: #f65245;
    font-size: 18px;
  }

  .tt-header .top-info a:hover {
    color: #fff;
  }

  .tt-header .nav-more {
    padding: 22px 0px;
  }

  .tt-header .top-info {
    padding-right: 0;
    margin-right: 0;
  }

  .tt-header .top-social li {
    display: inline-block;
    margin-right: 18px;
  }

  .tt-header .fa-search {
    padding-top: 4px;
    height: 26px;
    width: 1px;
    border-left: 1px solid #48474b;
    margin-top: 0px;
  }

  .tt-header .fa-search {
    color: #fff;
    font-size: 15px;
  }

  .tt-header .nav-more {
    padding: 16px 0px;
  }

  .tt-header .fa-search:before {
    padding-left: 18px;
  }

  .tt-header .top-social li:last-child {
    display: inline-block;
    margin-right: 0px;
  }

  .tt-header .main-nav>ul>li.first a {
    padding-left: 0;
  }

  .tt-header .main-nav>ul>li.active ul li a {
    color: #2a2a2a;
    padding-left: 20px;
  }

  .tt-header .main-nav>ul>li>ul>li>a:hover {
    background: #053357;
    color: #fff;
  }
}

@media (max-width: 1199px) and (min-width: 992px) {
  .tt-header .logo {
    width: 200px;
  }

  .tt-header .main-nav>ul>li>a {
    letter-spacing: 0;
    padding-left: 13px;
    padding-right: 13px;
  }
}

@media (max-width: 991px) {
  .tt-header {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    height: auto;
    overflow-x: hidden;
    -webkit-transition: width 1s, height 1s, transform 1s;
    -moz-transition: width 1s, height 1s, transform 1s;
    transition: width 1s, height 1s, transform 1s;
  }

  .tt-header.stick {
    position: fixed;
  }

  .tt-header .top-line {
    position: relative;
    background: #f6f6f6;
    text-align: left;
    z-index: 2;
  }

  .tt-header .top-line-inner {
    border: 0;
  }

  .tt-header .logo {
    height: 46px;
    line-height: 46px;
  }

  .tt-header .top-inner {
    position: relative;
    padding: 15px 0;
    text-align: left;
    z-index: 1;
  }

  .tt-header .top-inner:before, .tt-header .top-inner:after {
    content: '';
    display: block;
    position: absolute;
    top: 0;
    left: -500px;
    width: 500px;
    height: 100%;
    background: #053357;
  }

  .tt-header .top-inner:after {
    left: auto;
    right: -500px;
  }

  .tt-header .top-inner {
    margin-top: 0px;
    float: none;
  }

  .tt-header .cmn-toggle-switch {
    display: block;
  }

  .tt-header .toggle-block {
    display: none;
    text-align: center;
    position: relative;
    top: 0;
    left: 0;
    width: 100%;
    max-height: 100%;
    overflow: auto;
    padding: 0px 0 0 0;
  }

  .tt-header .main-nav {
    margin-bottom: 0;
    text-align: left;
  }

  .tt-header .main-nav>ul>li {
    border-bottom: 1px solid #cccccc2e;
    overflow: hidden;
  }

  .tt-header .main-nav>ul>li>a, .tt-header .main-nav>ul>li>a:focus {
    display: block;
    position: relative;
    width: 750px;
    font-size: 15px;
    line-height: 20px;
    color: #fff;
    padding: 13px 15px 13px 15px;
    margin: 0 auto;
  }

  .tt-header .main-nav>ul>li>a:before, .tt-header .main-nav>ul>li>a:after {
    content: '';
    display: block;
    position: absolute;
    top: 0;
    left: -500px;
    width: 500px;
    bottom: 0;
    background: transparent;
    -webkit-transition: all 300ms ease-in-out;
    -moz-transition: all 300ms ease-in-out;
    transition: all 300ms ease-in-out;
  }

  .tt-header .main-nav>ul>li>a:after {
    left: auto;
    right: -500px;
  }

  .tt-header .main-nav>ul>li>a:hover, .tt-header .main-nav>ul>li.active>a, .tt-header .main-nav>ul>li.select>a {
    color: #fff;
    background: #f65245;
    text-decoration: none;
  }

  .tt-header .main-nav>ul>li.select>a .menu-toggle {
    -webkit-transform: rotate(180deg);
    -moz-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    transform: rotate(180deg);
  }

  .tt-header .main-nav>ul>li>a:hover:before, .tt-header .main-nav>ul>li>a:hover:after, .tt-header .main-nav>ul>li.active>a:before, .tt-header .main-nav>ul>li.active>a:after, .tt-header .main-nav>ul>li.select>a:before, .tt-header .main-nav>ul>li.select>a:after {
    background: #053357;
  }

  .tt-header .main-nav>ul>li>ul {
    display: none;
    background: #053357;
    border-top: 1px solid #cccccc2e;
  }

  .tt-header .main-nav>ul>li>ul>li {
    border-bottom: 1px solid #cccccc2e;
  }

  .tt-header .main-nav>ul>li>ul>li>a {
    display: block;
    width: 750px;
    font-size: 15px;
    line-height: 20px;
    color: #fff;
    padding: 13px 22px;
    margin: 0 auto;
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
  }

  .tt-header .main-nav>ul>li>ul>li>a span:before {
    content: '-';
    margin-right: 10px;
  }

  .tt-header .main-nav>ul>li>ul>li>a, .tt-header .main-nav>ul>li>ul>li>a:focus {
    display: block;
    position: relative;
    text-decoration: none;
  }

  .tt-header .main-nav>ul>li>ul>li>a:before, .tt-header .main-nav>ul>li>ul>li>a:after {
    content: '';
    display: block;
    position: absolute;
    top: 0;
    left: -500px;
    width: 500px;
    bottom: 0;
    background: transparent;
    -webkit-transition: all 300ms ease-in-out;
    -moz-transition: all 300ms ease-in-out;
    transition: all 300ms ease-in-out;
  }

  .tt-header .main-nav>ul>li>ul>li>a:after {
    left: auto;
    right: -500px;
  }

  .tt-header .main-nav>ul>li>ul>li>a:hover, .tt-header .main-nav>ul>li>ul>li.active>a, .tt-header .main-nav>ul>li>ul>li.select>a {
    color: #fff;
    background: #f65245;
  }

  .tt-header .main-nav>ul>li>ul>li>a:hover:before, .tt-header .main-nav>ul>li>ul>li>a:hover:after, .tt-header .main-nav>ul>li>ul>li.active>a:before, .tt-header .main-nav>ul>li>ul>li.active>a:after, .tt-header .main-nav>ul>li>ul>li.select>a:before, .tt-header .main-nav>ul>li>ul>li.select>a:after {
    background: rgba(0, 0, 0, 0.55);
  }

  .tt-header .main-nav>ul>li>ul>li.select>a .menu-toggle {
    -webkit-transform: rotate(180deg);
    -moz-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    transform: rotate(180deg);
  }

  .tt-header .main-nav>ul>li>ul>li>ul {
    display: none;
    background: #053357;
    border-top: 1px solid #cccccc2e;
  }

  .tt-header .main-nav>ul>li>ul>li>ul>li {
    border-bottom: 1px solid #cccccc2e;
  }

  .tt-header .main-nav>ul>li>ul>li>ul>li>a {
    display: block;
    position: relative;
    width: 750px;
    font-size: 15px;
    line-height: 20px;
    font-weight: 500;
    color: #fff;
    background: #053357;
    padding: 12px 40px;
    margin: 0 auto;
    font-family: 'Poppins', sans-serif;
    text-decoration: none;
  }

  .tt-header .main-nav>ul>li>ul>li>ul>li>a:before, .tt-header .main-nav>ul>li>ul>li>ul>li>a:after {
    content: '';
    display: block;
    position: absolute;
    top: 0;
    left: -500px;
    width: 500px;
    bottom: 0;
    background: transparent;
    -webkit-transition: all 300ms ease-in-out;
    -moz-transition: all 300ms ease-in-out;
    transition: all 300ms ease-in-out;
  }

  .tt-header .main-nav>ul>li>ul>li>ul>li>a:after {
    left: auto;
    right: -500px;
  }

  .tt-header .main-nav>ul>li>ul>li>ul>li>a span:before {
    content: '-';
    margin-right: 10px;
  }

  .tt-header .main-nav>ul>li>ul>li>ul>li>a:hover, .tt-header .main-nav>ul>li>ul>li>ul>li.active>a {
    text-decoration: none;
    color: #fff;
    background: #f65245;
  }

  .tt-header .main-nav>ul>li>ul>li>ul>li>a:hover:before, .tt-header .main-nav>ul>li>ul>li>ul>li>a:hover:after, .tt-header .main-nav>ul>li>ul>li>ul>li.active>a:before, .tt-header .main-nav>ul>li>ul>li>ul>li.active>a:after {
    background: #fff;
  }

  .tt-header .menu-toggle {
    position: absolute;
    top: 50%;
    right: 9px;
    padding: 13px 16px;
    margin-top: -20px;
    -webkit-transition: all 300ms ease-in-out;
    -moz-transition: all 300ms ease-in-out;
    transition: all 300ms ease-in-out;
  }

  .tt-header-margin {
    height: 112px;
  }

  .tt-header .nav-more {
    margin-left: 0;
    padding-top: 0;
    display: none;
  }

  .tt-header.stick {
    top: 0;
  }

  .tt-header.stick .main-nav {
    margin-top: 0px;
  }

  .tt-header.stick .toggle-block {
    padding-top: 0;
    -webkit-transition: padding 300ms ease-in-out;
    -moz-transition: padding 300ms ease-in-out;
    transition: padding 300ms ease-in-out;
  }

  .header1 .top-social {
    display: none;
  }
}

@media (max-width: 767px) {
  .tt-header .top-line {
    min-height: 113px;
  }

  .tt-header .top-line-inner {
    padding: 20px 0;
  }

  .tt-header .top-line-left {
    margin-bottom: 15px;
  }

  .tt-header .top-line-left, .tt-header .top-line-right {
    float: none;
  }

  .tt-header .top-line-left:after, .tt-header .top-line-right:after {
    display: none;
  }

  .tt-header .top-info {
    display: block;
    font-size: 14px;
    margin-right: 0;
    padding-right: 0;
    margin-bottom: 10px;
  }

  .tt-header .top-info:last-child {
    margin-bottom: 0;
  }

  .tt-header .top-info:before {
    display: none;
  }

  .tt-header .main-nav>ul>li>a, .tt-header .main-nav>ul>li>a:focus, .tt-header .main-nav>ul>li>ul>li>a {
    width: auto;
    text-decoration: none;
  }

  .tt-header-margin {
    height: 177px;
  }

  .tt-header.stick {
    top: 0;
  }
}

.tt-header .top-line {
  border-bottom: 1px solid #9e958c;
}

.tt-header .top-line-inner {
  border-bottom: 0 !important;
}

.tt-header .top-line-left {
  color: #fff;
}

.tt-header .main-nav>ul>li.active>a {
  color: #fff;
}

.tt-header .main-nav>ul>li>a {
  color: #fff;
  text-decoration: none;
}

.tt-header .c-btn, .c-btn:focus {
  border-radius: 0;
  background: #676cb8;
}

.tt-header .top-info:before {
  background: #fff;
}

.tt-header .top-info {
  font-size: 14px;
}

.tt-header .fa-search {
  color: #fff;
  font-size: 20px;
}

/* */
.header_top {
  background: #fff;
  padding-top: 25px;
  padding-bottom: 28px;
}

.header_top ul {
  padding-left: 0;
  margin-bottom: 0;
}

.header-right-info ul li {
  display: inline-block;
  vertical-align: middle;
  padding-right: 45px;
  list-style: none;
}

.header-right-info ul li .single-header-right-info .text-box, .header-right-info ul li .single-header-right-info .icon-box {
  display: table-cell;
  vertical-align: top;
}

.header-right-info ul li .single-header-right-info .text-box p, .header-right-info ul li .single-header-right-info .text-box p a {
  color: #898989;
  font-size: 14px;
  font-family: 'Open Sans', sans-serif;
  font-weight: 400;
  padding-top: 0;
  text-transform: initial;
  margin-bottom: 0;
}

.header-right-info ul li .single-header-right-info .text-box h5 {
  color: #053357;
  font-size: 14px;
  font-family: 'Open Sans', sans-serif;
  font-weight: 600;
  margin-bottom: 0;
  margin-bottom: 2px;
}

.header3 .header-right-info ul li .single-header-right-info .text-box h5 {
  color: #f65245;
}

.main_menu {
  background: #242424;
  top: 0;
}

.tt-header .nav-more span {
  font-size: 14px;
  padding-top: 4px;
  height: 26px;
  width: 1px;
  border-left: 1px solid #273963;
  margin-top: 0px;
  padding-left: 18px;
}

.header_top a {
  text-decoration: none;
}

.header_top .sim-button {
  color: #fff;
}

.header-right-info ul li:last-child {
  margin-right: 0;
  padding-right: 0;
}

.header-right-info ul li .single-header-right-info .icon-box {
  float: left;
  width: 40px;
  height: 40px;
  border: 1px solid;
  border-color: #dddddd;
  text-align: center;
  margin-right: 25px;
  margin-top: 6px;
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  transform: rotate(45deg);
}

.header-right-info ul li .single-header-right-info .icon-box i {
  font-size: 20px;
  color: #f65245;
  font-size: 18px;
  line-height: 40px;
  color: #f65245;
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  -o-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

.logo {
  margin-top: 3px;
}

.header1 .wrapper-inner-tab-backgrounds-first {
  margin-top: 4px;
}

/*-------------------------------------------------------------------------------------------------------------------------------*/
/* 02 - BUTTON EFFECT */
/*-------------------------------------------------------------------------------------------------------------------------------*/
.wrapper-inner-tab-backgrounds-first {
  float: left;
  width: 100%;
}

.wrapper-inner-tab-backgrounds-first:hover a {
  text-decoration: none;
}

.wrapper-inner-tab-backgrounds-second {
  float: left;
  width: 100%;
}

.sim-button {
  line-height: 95px;
  height: 95px;
  text-align: center;
  margin-right: 1000px;
  margin-left: auto;
  width: 550px;
  cursor: pointer;
  font-family: 'Open Sans', sans-serif;
  font-size: 16px;
  font-weight: 600;
  background: #f65245;
  text-transform: uppercase;
  float: left;
}

.darkback .button6::before {
	background-color: #fff;
}
.darkback .button6:hover {
    color: #053357;
}

.button6 {
  color: #fff;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
  position: relative;
  border: 1px solid #dddddd;
}

.button6 a {
  color: #fff;
  text-decoration: none;
  display: block;
}

.button6:hover {
  background-color: #053357;
}

.bluebtn {
  margin-left: 20px;
}

.sim-button.bluebtn {
  background: #053357;
  color: #fff;
}

.sim-button.bluebtn:hover {
  background: #f65245;
  color: #fff;
}

.sim-button.yellowbtn {
  color: #fff;
}

.sim-button.yellowbtn:hover {
  color: #fff;
}

.yellowbtn:hover {
  color: #fff;
}

/*-------------------------------------------------------------------------------------------------------------------------------*/
/*03 - SWIPER SLIDER CSS */
/*-------------------------------------------------------------------------------------------------------------------------------*/

.swiper-button-disabled+.swiper-button-disabled+.swiper-wrapper {
  -moz-transform: none !important;
  -ms-transform: none !important;
  transform: none !important;
  -webkit-transform: none !important;
  cursor: auto;
}

.swiper-button-disabled+.swiper-button-disabled+.swiper-wrapper+.swiper-pagination-bullets {
  display: none;
}

.swiper-slide {
  position: relative;
}

.swiper-pagination .swiper-pagination-bullet {
  width: 14px;
  height: 14px;
  background: #8e8d8d;
  opacity: 1;
}

.swiper-pagination .swiper-pagination-bullet-active {
  background: #3695cc;
}

.swiper-pagination-white .swiper-pagination-bullet {
  background: #fff;
}

.swiper-pagination-white .swiper-pagination-bullet-active {
  background: #043742;
}

.swiper-pagination.fixed {
  bottom: 32px;
}

.swiper-pagination.fixed.pos-2 {
  bottom: 15px;
}

.swiper-pagination.relative-pagination {
  position: relative;
  top: 0;
  margin-top: 30px;
}

/*-------------------------------------------------------------------------------------------------------------------------------*/
/* 04 - TT-MSLIDE */
/*-------------------------------------------------------------------------------------------------------------------------------*/
.slider1 .slider_content h5 {
  color: #2a2a2a;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 16px;
  text-transform: uppercase;
  text-align: left;
  margin-top: 0;
  margin-bottom: 5px;
}

.tt-mslide-title h3 {
  color: #053357;
  font-size: 42px;
  font-weight: 400;
  font-family: 'Poppins', sans-serif;
  text-align: left;
  margin-top: 10px;
  margin-bottom: 20px;
text-transform: uppercase;
}

.tt-mslide-title h3 span {
  color: #f65245;
}

.tt-mslide-title p {
  color: #053357;
  font-size: 16px;
  font-weight: 400;
  font-family: 'Open Sans', sans-serif;
  letter-spacing: 0.30px;
  line-height: 26px;
  text-align: left;
  margin-bottom: 30px;
}

.slider1 .slider_content3 {
  width: 44%;
  float: right;
  background: rgba(246, 82, 69, 0.5);
  padding: 30px;
}
.slider1 .slider_content {
  width: 44%;
  float: right;
 }

.slider_content .sim-button {
  float: left;
}

.tt-mslide-wrapper {
  position: relative;
  overflow: hidden;
  width: 100%;
}

.tt-mslide {
  position: relative;
  overflow: hidden;
  width: 100%;
}

.tt-mslide-entry {
  display: table-cell;
  width: 99999px;
  height: 640px;
  text-align: center;
  padding-bottom: 210px;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  background-size: cover;
  background-position: center center;
  vertical-align: bottom;
}

.slider1 .tt-mslide:before {
  display: none;
}

.tt-mslide:before {
  content: '';
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #000;
  opacity: 0.25;
}

.tt-mslide-border {
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 1090px;
  height: 64px;
  margin-left: -545px;
  background: url(../img/mslider/border.png) no-repeat center center;
  z-index: 1;
}

.tt-mslide-border:before, .tt-mslide-border:after {
  content: '';
  display: block;
  position: absolute;
  top: 0;
  left: -3000px;
  width: 3000px;
  height: 100%;
  background: #fff;
}

.tt-mslide-border:after {
  left: auto;
  right: -3000px;
}

.tt-mslide-title {
  color: #fff;
  margin-bottom: 10px;
  font-size: 60px;
  font-family: 'Poppins', sans-serif;
  text-transform: initial;
  text-align: center;
  font-weight: 500;
}

.tt-mslide-entry .simple-text {
  margin-bottom: 35px;
}

.tt-mslide .text-animation {
  visibility: hidden;
}

.tt-mslide .text-animation.animated {
  visibility: visible;
}

@media (max-width: 1199px) {
  .tt-mslide-entry {
    height: 650px;
    padding-bottom: 160px;
  }
}

@media (max-width: 991px) {
  .tt-mslide-entry {
    height: 520px;
    padding-bottom: 100px;
  }
}

@media (max-width: 767px) {
  .tt-mslide-entry {
    height: 425px;
    padding: 50px 0;
    vertical-align: middle;
    padding-bottom: 0;
  }
}

/*-------------------------------------------------------------------------------------------------------------------------------*/
/* 05 - ABOUT SECTION */
/*-------------------------------------------------------------------------------------------------------------------------------*/
.cellpadding {
  padding: 70px 0;
}
.cellpadding-top {
  padding: 80px 0 0 0;
}
.clientpadd
{
	padding: 70px 0px 30px 0px;
}
.tt-title {
  font-family: 'Poppins', sans-serif;
  font-size: 30px;
  color: #ffffff;
  margin-top: 0;
  margin-bottom: 0;
  text-transform: initial;
}

.simple-text p {
  font-size: 17px;
  color: #898989;
  font-family: 'Open Sans', sans-serif;
  font-weight: 400;
  line-height: 26px;
  margin-bottom: 0;
}

.blue {
  color: #053357;
}

.yellow {
  color: #f65245 !important;
}

.white {
  color: #fff !important;
}

.about_sec h1 {
  font-size: 40px;
  color: #053357;
  text-transform: initial;
  font-weight: 400;
  font-family: 'Poppins', sans-serif;
  margin-top: 0;
  margin-bottom: 0;
}

.about_sec h1 span {
  color: #053357;
  font-weight: 700;
}

.about_sec .simple-text p:first-child {
  padding-bottom: 20px;
}

.about_sec a {
  text-decoration: none;
}

.about_right img.main_img {
  width: 65%;
  position: relative;
  border: 4px solid #053357;
  padding: 1em;
  z-index: 9;
  border-radius: 3px;
}

.about_right img.top_img1 {
  width: 65%;
  position: absolute;
  left: 15%;
  top: 50%;
  border: 4px solid #2a2a2a;
  padding: 1em;
  z-index: 1;
  border-radius: 3px;
}

.about_right img.top_img2 {
  width: 65%;
  position: absolute;
  left: 32.5%;
  top: 25%;
  border: 4px solid #f2c21b;
  padding: 1em;
  border-radius: 3px;
}

.what_we_offers {
  background: url("../images/home1/weoffer_bg.jpg") no-repeat;
  background-size: cover;
  position: relative;
  background-attachment: fixed;
  background-position: center;
}

.what_we_offers:before {
  background: #053357cc;
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
}

.what_we_offers .content {
  position: relative;
}

.what_we_offers li {
  float: left;
  width: 33.3333333333%;
  list-style: none;
  background: #fff;
  padding: 40px 50px;
  text-align: center;
}

.what_we_offers li i {
  color: #f65245;
  font-size: 30px;
}

.tt-sub-title-sub {
  font-size: 20px;
  font-weight: 400;
  color: #053357;
  font-family: 'Poppins', sans-serif;
  letter-spacing: 0.30px;
  margin-top: 0;
  margin-bottom: 0;
}

.what_we_offers .icon {
  margin-bottom: 15px;
}

.what_we_offers .simple-text p {
  margin-top: 5px;
}

.what_we_offers li:hover .simple-text p {
  color: #fff;
}

.what_we_offers li:hover .icon i {
  color: #f65245;
}

.what_we_offers li:hover .tt-sub-title-sub {
  color: #fff;
  font-weight: 300;
}

.what_we_offers li:hover {
  background: #053357;
}

.what_we_offers ul {
  padding: 0;
}

/* new testimonial section css */
.what_clientsay .tt-tittle {
  color: #242424;
  font-family: 'Poppins', sans-serif;
  font-size: 28px;
  margin-bottom: 25px;
  font-weight: 600;
  margin-top: 0;
}

.what_clientsay span {
  color: #f65245;
}

.what_clientsay .large-12 {
  margin-top: 60px;
}

.what_clientsay .owl-three .owl-nav {
  display: block !important;
}

.what_clientsay .owl-three .owl-nav {
  margin-top: 10px;
  position: absolute;
  top: -95px;
  right: 0;
}

.what_clientsay .owl-three h4 {
  float: right;
  font-size: 20px;
  color: #898989;
  font-style: italic;
  font-family: 'Poppins', sans-serif;
  margin-top: -40px;
}

.what_clientsay .tt-tittle {
  padding-left: 50px;
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 32px;
  color: #053357;
}

.what_clientsay .test-right {
  margin-left: 38px;
}

.what_clientsay .fa-quote-left {
  font-size: 40px;
  line-height: 0;
  color: #f65245;
}

.what_clientsay .owl-three .owl-item img {
  display: block;
  width: auto !important;
}

.what_clientsay .owl-three .image::before {
  content: '';
  border-right: 1px solid #898989;
  position: absolute;
  right: 0;
  height: 100px;
  top: 10px;
  bottom: 0;
  left: 0;
}

.what_clientsay .owl-three .image::after {
  content: '';
  border-right: 1px solid #898989;
  position: absolute;
  right: 0;
  height: 100px;
  top: 10px;
  bottom: 0;
  left: 0;
}

.what_clientsay .owl-three .image {
  float: right;
  padding-right: 38px;
  margin-top: 5px;
}

.what_clientsay .owl-three .owl-nav .owl-prev {
  position: absolute;
  right: 55px;
}

.what_clientsay .owl-three .owl-nav .owl-next {
  position: absolute;
  right: 0px;
}

.what_clientsay .owl-three .owl-nav .owl-prev.disabled {
  background: transparent !important;
}

.what_clientsay .owl-three .owl-nav .owl-next.disabled {
  background: transparent !important;
  position: absolute;
  right: 0;
}

.what_clientsay .owl-three .owl-nav [class*=owl-] {
  background: transparent !important;
  border: 2px solid #ddd;
  height: 45px;
  width: 45px;
  font-size: 20px;
  padding: 15px;
  padding-top: 0;
  padding-left: 17px;
  line-height: 41px;
}

.what_clientsay .owl-theme .owl-nav .disabled {
  opacity: .5;
  cursor: default;
}

.what_clientsay .owl-three .fa-angle-left:before {
  content: "\f104";
  color: #898989;
}

.what_clientsay .owl-three .fa-angle-right:before {
  content: "\f105";
  color: #898989;
}

.what_clientsay .test-right .icon {
  margin-top: 45px;
}

.what_clientsay .owl-three p {
  font-size: 18px;
  line-height: 30px;
}

/* testimonial section css */
.section-testimonials2 .title-section {
  margin-bottom: 22px;
}

.cd-headline.clip span {
  display: inline-block;
}

.testimonials blockquote.whisper {
  font-size: 16px;
  font-family: 'Poppins', sans-serif;
  font-weight: 400;
  color: #898989;
  line-height: 26px;
  margin-bottom: 11px;
}

.title-section .symbol {
  font-size: 40px;
  line-height: 0;
}

.cd-headline {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 40px;
  color: #053357;
}

/* */
.section-testimonials2 .title-section {
  margin-bottom: 20px;
}

.testimonials.style3 .message {
  margin-bottom: 147px;
}

.testimonials.style3 blockquote.whisper {
  line-height: 26px;
  margin-bottom: 0;
  font-family: 'Poppins', sans-serif;
  font-size: 16px;
  color: #898989;
  padding: 0;
  border: 0;
  background: 0;
}

.testimonials.style2 .avatar span.name, .testimonials.style3 .avatar span.name {
  font-size: 16px;
  font-weight: 700;
  display: inline-block;
  margin: 10px 0px 0px 0px;
  color: #053357;
  font-family: 'Poppins', sans-serif;
}

.wrap-testimonial .testimonials.style3 .avatar span.name {
  margin: 5px 0px 0px 0px;
  padding-right: 0;
}

.testimonials.style3 .avatar span.position {
  color: #28293a;
}

.testimonials.style3 .start {
  margin: 0;
}

.testimonials.style2 .avatar span.position, .testimonials.style3 .avatar span.position {
  font-size: 14px;
  color: #898989;
  font-family: 'Poppins', sans-serif;
  font-weight: 400;
}

.start i {
  font-size: 14px;
  margin: 0px -2.5px;
}

.wrap-testimonial #testimonial-carousel {
  position: absolute;
  left: 0;
  top: 122px;
  width: 100%;
}

.wrap-testimonial #testimonial-carousel .flex-viewport {
  padding: 15px 0;
  width: 310px;
  margin: 0 auto;
}

.wrap-testimonial #testimonial-carousel .slides {
  transform: none !important;
}

ul.slides {
  padding: 0;
}

.wrap-testimonial #testimonial-carousel .slides li {
  text-align: center;
  cursor: pointer;
  width: 95px !important;
}

.wrap-testimonial #testimonial-carousel .slides li img {
  width: 60px;
  height: 60px;
  border-radius: 100%;
}

.wrap-testimonial #testimonial-carousel .slides li:hover img, .wrap-testimonial #testimonial-carousel .slides li.flex-active-slide img {
  width: 90px;
  height: 90px;
  margin-top: -15px;
}

.flat-button, .fancybox:after, .fancybox:before, .iconbox, .flat-team .avatar img, .wrap-testimonial #testimonial-carousel .slides li img, .imagebox .imagebox-image img, .testimonials.style2 .message, .testimonials.style2 .message::before, .fancybox:before, .fancybox:after, .imagebox .imagebox-content, .iconbox .box-content .box-title, .iconbox .box-content p, .iconbox .box-header .box-icon i, .iconbox .box-header .box-icon, .iconbox .box-header .box-icon {
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.section-testimonials .title-section .title {
  margin-bottom: 46px;
}

.testimonials.style2 .message {
  padding: 23px 26px 27px 31px;
  background-color: #fff;
  margin-bottom: 28px;
}

.testimonials.style2 .message::before {
  left: 44px;
  bottom: -8px;
  border-left: 8px solid white;
  border-right: 8px solid white;
  border-top: 8px solid #fff;
  transform: translateX(50%);
  border-left-color: transparent;
  border-right-color: transparent;
}

.testimonials.style2:hover .message::before, .testimonials.style2.active .message::before {
  border-top: 8px solid #f65245;
}

.testimonials.style2 blockquote.whisper {
  line-height: 26px;
  margin-bottom: 0;
}

.testimonials .avatar .testimonial-author-thumbnail {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  float: left;
  margin: 0px 19px 0px 25px;
}

.testimonials.style2 .avatar span.name, .testimonials.style3 .avatar span.name {
  font-size: 18px;
  font-weight: 700;
  display: inline-block;
  margin: 10px 0px 0px 0px;
}

.testimonials.style2 .avatar span.position, .testimonials.style3 .avatar span.position {
  font-size: 14px;
}

.flat-testimonials2.owl-theme .owl-dots {
  text-align: center;
  padding-top: 35px;
  padding-left: 0;
}

.flat-testimonials2.owl-theme .owl-dots .owl-dot span {
  border: 2px solid #0f3661;
  margin: 4px 5px 4px 6px;
}

.flat-testimonials2.owl-theme .owl-dots .owl-dot.active span, .flat-testimonials2.owl-theme .owl-dots .owl-dot:hover span {
  background-color: #0f3661;
}

.title-section .title span, .contactform label.error, .start i, .section-about .fancybox.color-white:hover:after, .pricing-item .header-pricing .price-number, .pricing-item .header-pricing .symbol, .title-section .symbol, .fancybox:hover:after, .section-about .fancybox:hover:after, .iconbox .box-header .box-icon i, .flat-counter .numb-count, .countdown .square .numb, .iconbox.style2:hover .box-header .box-icon i {
  color: #f65245;
}

.our_projects {
  background:#e3e8ed;

}

.bigbtn {
  width: 205px;
  height: 45px;
}

.our_projects .button6 {
  float: right;
}

.our_projects .owl-nav {
  display: none;
}

.our_projects .project_slider h5 {
  color: #fff;
  font-family: 'Poppins', sans-serif;
  font-size: 18px;
  font-weight: 700;
  text-transform: uppercase;
  margin-top: 0;
  margin-bottom: 5px;
  letter-spacing: 0.30px;
}

.our_projects .project_slider p {
  margin-bottom: 0;
  color: #fff;
  font-family: 'Poppins', sans-serif;
  font-size: 15px;
  font-weight: 400;
  line-height: 26px;
  padding: 0 15px;
  padding-top: 5px;
}

.our_projects .project_slider .button6 {
  float: none;
  margin-top: 30px;
}

.latest_news {
  background-color: #f1f5f9;
}

.latest_news .content {
  padding: 30px;
  background: #ffffff;
}

.latest_news .content p {
  color: #898989;
  font-size: 15px;
  font-weight: 400;
  line-height: 26px;
  font-family: 'Open Sans', sans-serif;
  margin-bottom: 10px;
}

.latest_news .content p:last-child {
  margin-bottom: 0px;
}

.latest_news .content .readmore {
  color: #898989;
  font-size: 15px;
  font-weight: 400;
  line-height: 26px;
  font-family: 'Poppins', sans-serif;
  text-decoration: none;
  cursor: pointer;
}

.latest_news .content .readmore:hover {
  text-decoration: underline;
}

.latest_news .datetime {
  text-align: center;
  padding: 15px;
  margin-left: 30px;
  font-size: 13px;
  line-height: 16px;
  width: 59px;
  height: 69px;
  position: absolute;
  top: 0;
  background: #f65245;
  font-weight: 400;
  color: #ffffff;
  font-family: 'Poppins', sans-serif;
}

.latest_news .datetime span {
  margin-bottom: 7px;
  font-size: 25px;
  line-height: 16px;
  display: block;
  font-weight: 400;
  color: #ffffff;
  font-family: 'Poppins', sans-serif;
}

.latest_news .fa-angle-double-right {
  color: #053357;
  padding-left: 5px;
  padding-top: 1px;
}

.news_box_item .news_image {
  overflow: hidden;
  position: relative;
  display: block;
}

.news_box_item .news_image:before {
  content: "";
  
  position: absolute;
  left: 0px;
  top: 0px;
  width: 100%;
  height: 100%;
  z-index: 1;
  -webkit-transform: scaleX(0);
  -ms-transform: scaleX(0);
  transform: scaleX(0);
  -webkit-transform-origin: 0 80%;
  -ms-transform-origin: 0 80%;
  transform-origin: 0 80%;
  -webkit-transition: all 400ms linear 0s;
  -o-transition: all 400ms linear 0s;
  transition: all 400ms linear 0s;
  display: block;
}

.news_box_item:hover .news_image:before {
  -webkit-transform: scaleX(1);
  -ms-transform: scaleX(1);
  transform: scaleX(1);
  opacity: 1;
}

.news_box_item:hover .news_image img {
  -webkit-transform: scale(1.05);
  -ms-transform: scale(1.05);
  transform: scale(1.05);
}

.news_box_item .news_image img {
  max-width: 100%;
  -webkit-transition: all 400ms linear 0s;
  -o-transition: all 400ms linear 0s;
  transition: all 400ms linear 0s;
}

.news_box_item:hover .datetime {
  z-index: 1;
}

.tt-news-title {
	font-family: 'Poppins', sans-serif;
	font-size: 18px;
	margin-top: 0;
	text-transform: initial;
	margin-bottom: 10px;
	color: #053357;
	line-height: 25px;
}

/* request_free */
.request_free {
  background: #053357;
  position: relative;
}

.request_free .left-image {
  width: 46%;
  position: absolute;
  top: 0;
  height: 100%;
}

.request_free .left-image img {
  object-fit: cover;
  height: 100%;
  float: right;
}

.request_free .right_content {
  width: 51%;
  float: right;
}

.request_free .right_content .tt-title {
  margin-left: 15px;
}

.request_contact .form-group {
  margin-bottom: 15px;
}

.request_contact .form-group input {
  border: none;
  background: #112248;
  border-radius: 0px;
  height: 42px;
  padding: 0px 20px;
  outline: none;
  font-family: 'Poppins', sans-serif;
  color: #0d2034;
  font-size: 15px;
  letter-spacing: .30px;
  -webkit-transition: all 400ms linear 0s;
  -o-transition: all 400ms linear 0s;
  transition: all 400ms linear 0s;
}

.request_contact .form-group textarea {
  border: none;
  background: #112248;
  border-radius: 0px;
  height: 135px;
  padding: 15px 20px;
  outline: none;
  font-family: 'Poppins', sans-serif;
  color: #fff;
  font-size: 15px;
  letter-spacing: .30px;
  -webkit-transition: all 400ms linear 0s;
  -o-transition: all 400ms linear 0s;
  transition: all 400ms linear 0s;
  resize: none;
  margin-bottom: 15px;
}

.submit_btn {
  border-radius: 0;
  line-height: 34px;
}

.request_contact .form-group:last-child {
  margin-bottom: 0;
}

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

.request_contact input::placeholder, .request_contact textarea::placeholder {
  color: #0d2034;
}

.client_carousel .owl-carousel .owl-item img {
  display: block;
  width: auto;
}

.client_carousel {
  background: #f1f5f9;
}

.client_carousel .item {
  height: 88px;
  vertical-align: middle;
  display: table-cell;
}

.client_carousel {
  padding: 30px 0;
}

.client_carousel .owl-nav {
  display: none;
}

/* footer_strip css */
.footer_strip {
  background: #053357;
  padding: 30px 0;
}

.footer_strip h3 {
  font-family: 'Poppins', sans-serif;
  font-size: 30px;
  font-weight: 700;
  color: #ffffff;
  font-style: italic;
  margin: 0;
  margin-top: 6px;
  letter-spacing: 0.10px;
}

.whitebtn {
  background: #fff;
  color: #2a2a2a;
}

.whitebtn:hover {
  color: #fff;
}

.tt-footer {
  background: #0d2034;
}

.tt-footer .tt-footer-inner .simple-text p {
    color: #d5d5d5;
    margin-top: 20px;
    margin-bottom: 15px;
    width: 350px;
}

.tt-footer .tt-footer-inner .simple-text a {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  color: #f65245;
  font-size: 15px;
}

.tt-footer-inner {
  padding-top: 80px;
  padding-bottom: 50px;
}

.tt-footer-logo {
  display: inline-block;
}

.tt-foooter-title small {
  font-family: 'Poppins', sans-serif;
  color: #fff;
  font-weight: 500;
  font-size: 17px;
  text-transform: uppercase;
}

.tt-foooter-title:after {
  content: '';
  display: block;
  width: 30px;
  height: 2px;
  margin-top: 15px;
}

.tt-footer-list li {
  margin-bottom: 14px;
  list-style: none;
  padding-bottom: 5px;
}

.tt-footer-list li:last-child {
  margin-bottom: 0;
  border-bottom: 0;
}

.tt-footer-list a {
  position: relative;
  font-size: 15px;
  line-height: 18px;
  color: #d5d5d5;
  padding-left: 0;
  letter-spacing: 0.20px;
  font-family: 'Open Sans', sans-serif;
}

.tt-foooter-title {
    margin-bottom: 15px;
}

.tt-footer-list {
  padding: 0;
}

.tt-footer-list a:hover {
    color: #f65245;
    text-decoration: none;
}

.tt-footer-inner .simple-text.last {
  color: #d5d5d5;
  font-size: 17px;
  font-style: italic;
  font-family: 'Poppins', sans-serif;
  font-weight: 400;
}

.tt-subscribe {
  position: relative;
}

.tt-subscribe input:not([type="submit"]) {
  width: 100%;
  height: 46px;
  background: #fff;
  font-size: 15px;
  color: #838486;
  padding-left: 20px;
  padding-right: 70px;
  border: 2px solid #fff;
  -moz-border-radius: 3px;
  border-radius: 3px;
}

.tt-subscribe input:not([type="submit"])::-webkit-input-placeholder {
  font-size: 14px;
  font-weight: 400;
  color: #838486;
  opacity: 0.67;
}

.tt-subscribe input:not([type="submit"]):-moz-placeholder {
  font-size: 14px;
  font-weight: 400;
  color: #838486;
  opacity: 0.67;
}

.tt-subscribe input:not([type="submit"])::-moz-placeholder {
  font-size: 14px;
  font-weight: 400;
  color: #838486;
  opacity: 0.67;
}

.tt-subscribe input:not([type="submit"]):-ms-input-placeholder {
  font-size: 14px;
  font-weight: 400;
  color: #838486;
  opacity: 0.67;
}

.tt-subscribe input:not([type="submit"]):focus {
  border-color: #3695cc;
}

.tt-subscribe-submit {
  position: absolute;
  top: 0;
  right: 0;
  width: 52px;
  height: 46px;
  font-size: 18px;
  line-height: 46px;
  color: #2a2a2a;
  text-align: center;
  background: #001b57;
  -moz-border-radius-topright: 3px;
  border-top-right-radius: 3px;
  -moz-border-radius-bottomright: 3px;
  border-bottom-right-radius: 3px;
}

.tt-socail {
  margin-top: 25px;
}

.tt-subscribe-submit input {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #053357;
  border: 0;
}

.tt-subscribe-submit {
  background: #001b57;
}

.tt-subscribe-submit i.fa-envelope:before {
  content: "\f0e0";
  position: relative;
  z-index: 1;
  color: #fff;
}

.tt-socail li {
  display: inline-block;
  margin-right: 10px;
}

.tt-socail li:last-child {
  margin-right: 0;
}

.tt-socail a {
    display: block;
    width: 32px;
    height: 36px;
    font-size: 22px;
    line-height: 33px;
    color: #d5d5d5;
    text-align: center;
    -moz-border-radius: 100%;
    border-radius: 100%;
}

ul.tt-socail {
    padding: 0;
    margin-top: 15px;
}

.tt-socail a:hover {
  color: #f65245;
  border-color: #f65245;
}

.tt-copy {
  font-size: 15px;
  line-height: 20px;
  color: #485866;
  background: #022038;
  padding: 30px 0;
  font-family: 'Open Sans', sans-serif;
}

.tt-copy-right {
  text-align: right;
}

.footer-2 {
  padding-left: 55px;
}

.footer-3 {
  padding-left: 65px;
}

/*-------------------------------------------------------------------------------------------------------------------------------*/
/* - ABOUT-US PAGE css */
/*-------------------------------------------------------------------------------------------------------------------------------*/
.banner {
  background: url("../images/banner.jpg") no-repeat;
  background-size: cover;
  position: relative;
  padding-top: 145px;
  padding-bottom: 145px;
}

.banner:before {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  content: '';
  background: rgba(0, 0, 0, 0.25);
}

.banner_title {
  font-family: 'Poppins', sans-serif;
  color: #ffffff;
  font-size: 45px;
  text-transform: uppercase;
  text-align: center;
  margin-top: 0;
  margin-bottom: 0;
  position: relative;
}

.breadcrumb {
  background: none;
  position: relative;
  padding: 0;
  vertical-align: middle;
  text-align: center;
  margin-top: 3px;
  margin-bottom: 0;
}

.breadcrumb ul {
  display: inline-block;
  padding-left: 0;
  margin-bottom: 0;
}

.breadcrumb ul li {
  list-style: none;
  float: left;
  padding-right: 10px;
  color: #ffffff;
  background: 0;
}

.breadcrumb ul li:last-child {
  padding-right: 0;
}

.breadcrumb ul li.active a {
  font-size: 13px;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
}

.breadcrumb ul li a {
  font-size: 13px;
  color: #fff;
  font-family: 'Poppins', sans-serif;
  font-weight: 400;
  text-transform: uppercase;
  text-decoration: none;
}

/*-------------------------------------------------------------------------------------------------------------------------------*/
/* -Welcome sec */
/*-------------------------------------------------------------------------------------------------------------------------------*/
.tt-small-title {
  font-size: 18px;
  color: #f65245;
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  margin-top: 0;
  margin-bottom: 0;
  position: relative;
  margin-left: 65px;
}

.tt-small-title:before {
  top: 10px;
  bottom: 0;
  left: -65px;
  right: 0;
  position: absolute;
  background: #f65245;
  width: 50px;
  height: 2px;
  content: '';
}

.welcome_sec h1 {
font-family: 'Poppins', sans-serif;
    font-size: 40px;
    color: #053357;
    font-weight: 500;
    line-height: 50px;
    margin-top: 5px;
    margin-bottom: 20px;
}

.welcome_sec h1 span {
  color: #053357;
  font-weight: 700;
}

.welcome_sec .image {
  float: right;
}

/*-------------------------------------------------------------------------------------------------------------------------------*/
/* -We Are Expert Section css */
/*-------------------------------------------------------------------------------------------------------------------------------*/
.we_are_expert {
  position: relative;
}

.we_are_expert .left_img {
  float: left;
  width: 50%;
}

.we_are_expert .left_img img {
  height: 100%;
  object-fit: cover;
}

.we_are_expert .right_img {
  position: absolute;
  right: 0;
  top: 0;
  width: 50%;
}

.we_are_expert .right_img img {
  height: 100%;
  object-fit: cover;
}

.we_are_expert .right_img:before {
  position: absolute;
  right: 0;
  top: 0;
  left: 0;
  bottom: 0;
  background: #053357;
  content: '';
}

.we_are_expert .content {
  padding-left: 65px;
}

.we_are_expert .tt-sub-title-sub {
  color: #f65245;
  font-weight: 500;
}

.we_are_expert .content p {
  padding-bottom: 10px;
}

.we_are_expert .content p:last-child {
  padding-bottom: 0;
}

/* quality_policy css */
.quality_policy {
  background: url("../images/home3/strip-bg.jpg") no-repeat;
  background-size: cover;
  position: relative;
  background-attachment: fixed;
  background-position: center right;
}

.quality_policy:before {
  background: rgba(0, 27, 87, 0);
  position: absolute;
  right: 0;
  top: 0;
  left: 0;
  bottom: 0;
  content: '';
}
.quality_policy h1 span {
  color: #f65245;
}

.quality_policy .content {
  position: relative
}

.quality_policy .sim-button {
  float: none;
}

.extra_cellpadding {
  padding: 80px 0;
}

.quality_policy .content .simple-text p {
  width: 1085px;
  margin: 0 auto;
}
.our_experts .simple-text p {
  width: 565px;
  text-align: center;
  margin: 0 auto;
}

.border_bottom {
  width: 50px;
  height: 2px;
  background: #f65245;
  margin: 0 auto;
}

.our_experts .content h4 {
  font-family: 'Poppins', sans-serif;
  color: #2a2a2a;
  font-weight: 600;
  font-size: 18px;
  text-align: center;
  margin-bottom: 10px;
  margin-top: 0;
  text-transform: uppercase;
}

.our_experts .content p {
  font-family: 'Poppins', sans-serif;
  color: #898989;
  font-weight: 400;
  font-size: 15px;
  text-align: center;
  margin-bottom: 0;
}

.our_experts .content {
  padding: 25px 0;
  background: #f9f9f9;
  z-index: 9;
}

.our_experts .team_info_popup {
  background: #053357;
  padding: 0 0;
  text-align: center;
  position: absolute;
  -webkit-transition: all .3s ease;
  transition: all .3s ease;
  min-height: 5px;
  width: 100%;
  height: 5px;
}

.our_experts .social_icons {
  opacity: 0;
  visibility: hidden;
}

.our_experts .team_expert:hover .social_icons {
  opacity: 1;
  visibility: visible;
}

.our_experts .team_expert:hover .team_info_popup {
  z-index: 100;
  margin: -50px 0 0 0;
  min-height: 150px;
  padding: 15px 0;
}

.our_experts .team_expert:hover ul {
  opacity: 1;
  visibility: visible;
}

.team_expert {
  margin-top: 50px;
}

.our_experts .social_icons ul {
  margin: 0 auto;
  display: inline-block;
  padding-left: 0;
  padding-top: 15px;
}

.our_experts .social_icons ul li {
  list-style: none;
  float: left;
  padding-right: 15px;
}

.our_experts .social_icons ul li i {
  font-size: 16px;
  color: #f9f9f9;
}

.social_icons .content-inner {
  border-bottom: 1px solid #f65245;
  padding: 5px;
  text-align: center;
}

.social_icons .content-inner h4 {
  color: #f65245;
  font-size: 18px;
  text-transform: uppercase;
  font-family: 'Poppins', sans-serif;
}

.social_icons .content-inner p {
  color: #ffffff;
  font-family: 'Open Sans', sans-serif;
}

.team_expert {
  position: relative;
}

.image-zoom-on-hover {
  overflow: hidden;
}

.image-opacity-on-hover img, .image-zoom-on-hover img {
  transition: opacity 300ms ease-out, transform 300ms ease-out, filter 300ms ease-out;
  -moz-transition: opacity 300ms ease-out, -moz-transform 300ms ease-out, -moz-filter 300ms ease-out;
  -o-transition: opacity 300ms ease-out, -o-transform 300ms ease-out, -o-filter 300ms ease-out;
  -webkit-transition: opacity 300ms ease-out, -webkit-transform 300ms ease-out, -webkit-filter 300ms ease-out;
}

.image-zoom-on-hover:hover img {
  -webkit-transform: scale(1.1);
  transform: scale(1.1);
}

.image-opacity-on-hover:hover img {
  opacity: 0.50;
  filter: alpha(opacity=50);
}

.image-opacity-on-hover {
  background: #053357;
}

.our_experts2 {
  position: relative;
  background: url("../images/services/our_expert_bg.jpg") no-repeat;
  background-size: cover;
  background-attachment: fixed;
  background-position: center right;
}

.our_experts2:before {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  content: '';
  background: #053357cc;
}

.our_experts2 .text {
  position: relative;
  background: 0;
}

.single_service {
  margin-top: 50px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.service_sec .upper_section p {
  width: 715px;
  margin: 0 auto;
}

.single_service .content h4 {
    font-family: 'Poppins', sans-serif;
    color: #053357;
    font-weight: 400;
    font-size: 20px;
    margin-top: 0;
    margin-bottom: 10px;
}

.single_service .content .readmore {
  font-family: 'Poppins', sans-serif;
  color: #053357;
  font-weight: 600;
  font-size: 14px;
  text-transform: uppercase;
  text-decoration: none;
}

.single_service .content p {
  margin-bottom: 10px;
  color: #595959;
}

.single_service .content p:last-child {
  margin-bottom: 0px;
}

.single_service .content {
  background: #fff;
  padding: 30px 20px;
}

.single_service:hover h4, .single_service:hover .readmore {
  color: #f65245;
}

.single_service:hover img {
  -webkit-transform: scale(1.1);
  transform: scale(1.1);
  opacity: 0.50;
  filter: alpha(opacity=50);
  background: #053357;
}

.servcontent {
  font-family: 'Poppins', sans-serif;
  font-weight: 400;
  font-size: 20px;
  color: rgba(36, 36, 36, 0.78);
  line-height: 31px;
  margin-top: 0;
}

.categoryList {
  position: relative;
  margin-bottom: 40px;
  padding: 0;
  list-style: none;
}

.categoryList li {
  position: relative;
  margin-bottom: 5px;
}

.categoryList li a {
  display: block;
  background: #f1f1f1;
  color: #053357;
  padding: 17px 29px;
  -webkit-transition: all 150ms linear;
  transition: all 150ms linear;
  font-size: 16px;
  font-weight: 600;
  font-family: 'Poppins', sans-serif;
  text-decoration: none;
}

.categoryList li.activeCat a, .categoryList li a:hover {
  background: #053357;
  color: #fff;
}

.faq_query {
  background: url(../images/services/faq_querybg.jpg);
  background-repeat: no-repeat;
  background-position: right;
  background-size: cover;
  border: 2px solid #e9e9e9;
  padding: 25px;
}

.tt-faq-title {
  color: #2a2a2a;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 20px;
  margin-top: 0;
}

.faq_query p {
  color: #898989;
}

.faq_query a {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  color: #f65245;
  font-size: 15px;
  line-height: 35px;
}

.pdfBlock {
  position: relative;
  border: 1px solid #e6e6e6;
  background: #053357;
  padding: 18px 77px 10px 80px;
  margin-top: 30px;
}

.pdfBlock i {
  font-size: 40px;
  color: #ffffff;
  position: absolute;
  left: 21px;
  top: 16px;
}

.pdfBlock .pdfSize span {
  text-transform: uppercase;
  color: #ffffff;
  font-weight: 600;
  font-size: 16px;
  line-height: 18px;
  font-family: 'Poppins', sans-serif;
}

.pdfBlock .pdfSize p {
  color: #f65245;
  font-weight: 600;
  font-size: 16px;
  line-height: 18px;
  font-family: 'Poppins', sans-serif;
  text-transform: uppercase;
}

.mainServicesContent {
  margin-left: 30px;
}

.mainServicesContent .section_1 .right_sec {
  background: #f1f1f1;
  text-align: center;
  padding: 30px;
  margin-top: 30px;
}

.mainServicesContent .section_1 .right_sec i {
  color: #053357;
  font-size: 20px;
  vertical-align: middle;
}

.mainServicesContent .section_1 .right_sec .simple-text p {
  font-size: 16px;
  padding-top: 15px;
  padding-bottom: 20px;
}

.mainServicesContent .section_1 .right_sec h5 {
  color: #f65245;
  font-family: 'Poppins', sans-serif;
  font-size: 15px;
  font-weight: 400;
  letter-spacing: 0.30px;
  margin-bottom: 0;
}

.mainServicesContent .section_1 .right_sec .fa-minus {
  color: #f65245;
}

.mainServicesContent .section_1 .col-md-4 {
  width: 39.333333%;
}

.mainServicesContent .section_1 .col-md-8 {
  width: 60.666667%;
}

.mainServicesContent .section_2 ul li {
  line-height: 30px;
  font-size: 15px;
  color: #898989;
  font-family: 'Open Sans', sans-serif;
  font-weight: 400;
  list-style: none;
  padding-left: 35px;
}

.mainServicesContent .section_2 ul {
  padding-left: 0;
}

.mainServicesContent .section_2 ul li:before {
  content: "\f00c";
  position: absolute;
  font-family: FontAwesome;
  left: 18px;
  color: #f65245;
}

.section_4 ul {
  padding-left: 0;
}

.section_4 ul li {
	list-style: none;
	font-size: 15px;
	line-height: 30px;
	color: #898989;
	font-family: 'Open Sans', sans-serif;
	font-weight: 400;
}

.tt-sub-title {
  font-family: 'Poppins', sans-serif;
  font-size: 24px;
  margin-top: 0;
  margin-bottom: 0;
  text-transform: initial;
}

.tt-sub-title span {
  color: #053357;
}

.contact-form input {
  height: 45px;
  box-shadow: none;
  border-radius: 0;
  color: #898989;
  font-size: 15px;
  font-weight: 400;
  padding: 6px 17px;
  font-family: 'Poppins', sans-serif;
}

.section_4 .contact-form textarea.form-control {
  min-height: 137px;
}

.contact-form textarea.form-control {
  height: auto;
  min-height: 204px;
  border-radius: 0;
  padding: 6px 20px;
  color: #959595;
  font-size: 16px;
  font-weight: 400;
  font-family: 'Poppins', sans-serif;
}

.section_4 button {
  text-decoration: none;
  margin-top: 15px;
}

.section_4 button:focus, .section_4 button:active {
  outline: none !important;
  box-shadow: none;
  border-color: #ddd;
}

.section_2 .image {
  float: right;
  margin-top: 10px;
}

.service-tab-box .tab-menu {
  border-bottom: 1px solid #f1f1f1;
  overflow: hidden;
  padding: 0;
  margin-bottom: 0;
}

.service-tab-box .tab-menu li {
  display: inline-block;
  float: left;
  margin-bottom: 0px;
  margin-right: 3px;
}

.service-tab-box .tab-menu li span {
  background: #ffffff;
  border-top: 1px solid #f1f1f1;
  border-left: 1px solid #f1f1f1;
  border-right: 1px solid #f1f1f1;
  border-bottom: 1px solid #f1f1f1;
  border-radius: 0;
  display: block;
  margin-bottom: -1px;
  padding: 15px 30px 13px;
  color: #2a2a2a;
  font-size: 17px;
  font-weight: 600;
  text-transform: capitalize;
  transition: all 500ms ease;
  font-family: 'Poppins', sans-serif;
  position: relative;
  display: block;
  cursor: pointer;
}

.service-tab-box .tab-menu li.active span, .service-tab-box .tab-menu li:hover span {
  background: #f1f1f1;
  color: #053357;
  border-left-color: #f1f1f1;
  border-top-color: #f1f1f1;
  border-right-color: #f1f1f1;
  border-bottom-color: #f1f1f1;
}

.service-tab-box .tab-content-box {
  background: #f1f1f1;
  padding: 29px 20px 20px;
  display: block;
}

.service-tab-box .tab-content-box .single-tab-content {}

.service-tab-box .tab-content-box .single-tab-content .top-content {
  margin-bottom: 10px;
}

.service-tab-box .tab-content-box .single-tab-content .top-content p {
  color: #898989;
  font-size: 15px;
  font-weight: 400;
  font-family: 'Open Sans', sans-serif;
  line-height: 26px;
  margin-bottom: 0;
}

.service-tab-box .tab-content-box .single-tab-content .bottom-content {
  overflow: hidden;
}

.service-tab-box .tab-content-box .single-tab-content .bottom-content .title {
  padding-bottom: 10px;
}

.service-tab-box .tab-content-box .single-tab-content .bottom-content .title h3 {
  font-size: 20px;
}

.service-tab-box .tab-content-box .single-tab-content .bottom-content ul {}

.service-tab-box .tab-content-box .single-tab-content .bottom-content ul.left {
  margin-right: 50px;
}

.service-tab-box .tab-content-box .single-tab-content .bottom-content ul li {
  line-height: 36px;
}

.service-tab-box .tab-content-box .single-tab-content .bottom-content ul li i {
  color: #3740b0;
  font-size: 14px;
  display: inline-block;
  padding-right: 8px;
}

/* our team page css */
.our_experts3 {
  background: #ffffff;
}

.our_experts3:before {
  display: none;
}

.tt-accordeon {
  position: relative;
}

.tt-accordeon-title {
  background-color: #fafafa;
  display: block;
  position: relative;
  font-size: 16px;
  line-height: 20px;
  font-weight: 600;
  color: #2a2a2a;
  padding: 15px 55px 15px 20px;
  border: 1px solid #dddddd;
  cursor: pointer;
  text-align: left;
  letter-spacing: 0;
  font-family: 'Poppins', sans-serif;
}

.tt-accordeon-title:after {
  position: absolute;
  content: "\f067";
  top: 50%;
  right: 0;
  margin-top: -26px;
  width: 0;
  height: 0;
  z-index: 2;
  font-family: FontAwesome;
  -webkit-transition: all 0.2s linear;
  -moz-transition: all 0.2s linear;
  transition: all 0.2s linear;
  background: #053357;
  width: 57px;
  height: 51px;
  padding: 23px;
  padding-top: 16px;
  color: #ffff;
}

.tt-panel {
  display: none;
  background-color: #fff;
  padding: 25px 25px;
  border-top: 0px;
  border-left: 1px solid #d1d1d1;
  border-right: 1px solid #d1d1d1;
  border-bottom: 1px solid #d1d1d1;
}

.tt-accordeon-title.active:after {
  position: absolute;
  content: "\f068";
  -webkit-transition: all 0.2s linear;
  -moz-transition: all 0.2s linear;
  transition: all 0.2s linear;
}

.faq_form {
  background: #f3f3f3;
}

.c-input {
  width: 100%;
  height: 45px;
  font-size: 15px;
  font-weight: 400;
  color: #898989;
  padding: 0 20px;
  background: #fff;
  border: 1px solid #dddddd;
  font-family: 'Poppins', sans-serif;
}

.c-area {
  width: 100%;
  height: 172px;
  font-size: 15px;
  line-height: 18px;
  font-weight: 400;
  color: #595959;
  padding: 15px 20px;
  background: #fff;
  border: 1px solid #eeeeee;
  font-family: 'Poppins', sans-serif;
}

.faq_form .sim-button {
  float: none;
  color: #fff;
}

.error_page {
  background: url("../images/404_bg.jpg") no-repeat;
  background-size: cover;
}

.cell-view {
  display: table-cell;
  vertical-align: middle;
  width: 10000px;
  padding: 15px 0;
}

.pageErroreTitle .cell-view {
  height: 790px;
}

.pageErroreTitle {
  position: relative;
  text-align: center;
}

.pageErroreTitle .as {
  font-size: 200px;
  line-height: 146px;
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  color: #fff;
  margin-top: 0;
  margin-bottom: 30px;
}

.pageErroreTitle p {
  color: #fff;
  font-size: 50px;
  line-height: 60px;
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  margin-bottom: 15px;
}

.pageErroreTitle span {
  font-size: 25px;
  line-height: 30px;
  color: #fff;
  font-family: 'Poppins', sans-serif;
  font-weight: 300;
}

.error_shadow {
  background: rgba(0, 0, 0, 0.5);
  padding-top: 90px;
  padding-bottom: 95px;
}

.error_page .error {
  width: 100%;
}

.error_page .error .button6 span {
  font-size: 20px;
  font-weight: 600;
  font-family: 'Poppins', sans-serif;
  line-height: 64px;
  color: #fff;
  font-weight: 700;
}

.error_page .error .button6:hover span {
  color: #fff;
}

.error_page .error .button6 {
  width: 303px;
  height: 64px;
  line-height: 64px;
  float: none;
}

.error_page a {
  text-decoration: none;
}

/* maintenance page css */
.maintenance {
  background: url("../images/maintenance_bg.jpg") no-repeat;
  background-size: cover;
  position: Relative;
}

.maintenance:before {
  position: absolute;
  content: '';
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background: #053357b3;
}

.maintenance .pageErroreTitle1 {
  position: relative;
}

.maintenance .maintenance_text h1 {
  font-family: 'Poppins', sans-serif;
  font-size: 70px;
  color: #fff;
  font-weight: 700;
  margin-bottom: 0;
  text-align: center;
  margin-top: 0;
  margin-bottom: 20px;
}

.maintenance .maintenance_text p {
  font-size: 22px;
  color: #ffffff;
  font-family: 'Poppins', sans-serif;
  font-weight: 400;
  font-style: italic;
  text-align: center;
  margin-bottom: 20px;
}

.maintenance_text h6 {
  font-size: 18px;
  color: #ffffff;
  font-family: 'Poppins', sans-serif;
  font-weight: 400;
  text-align: center;
  line-height: 26px;
}

.maintenance_text {
  padding: 304.5px 0;
}

.single-progress {
  margin-top: 70px;
}

.barfiller {
  padding: 0;
  background: #fff;
  border: 0;
  height: 6px;
  width: 713px;
  height: 19px;
  margin: 0 auto;
  position: relative;
}

.barfiller .tipWrap {
  display: none;
}

.barfiller .tip {
  background: #000000;
  border-radius: 1px;
  color: #fff;
  font-size: 14px;
  font-family: 'Poppins', sans-serif;
  left: 0;
  line-height: 20px;
  margin-top: -52px;
  padding: 8px 16px 8px 16px;
  position: absolute;
  text-align: center;
  z-index: 2;
  margin-left: 0;
  border-radius: 5px;
}

.barfiller .tip:after {
  border-color: #000 transparent;
  border-image: none;
  border-style: solid;
  border-width: 11px 14px 0px 14px;
  content: "";
  display: block;
  left: 0;
  position: absolute;
  top: 86%;
  left: 27%;
  -webkit-transform: rotate(-92deg);
  -ms-transform: rotate(-92deg);
  transform: rotate(360deg);
  z-index: 9;
}

.barfiller .fill {
  background: #f65245;
  display: block;
  width: 0px;
  height: 100%;
  z-index: 1;
}

/*-------------------------------------------------------------------------------------------------------------------------------*/
/* 20 - COMMING SOON PAGE CSS */
/*-------------------------------------------------------------------------------------------------------------------------------*/
.commingWrapper .cell-view {
  height: 974px;
}

.commingTitle .as {
  text-align: center;
  font-size: 70px;
  line-height: 60px;
  margin-bottom: 45px;
  color: #fff;
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  margin-top: 0;
}

.timerWrapper {
  text-align: center;
  margin-bottom: 40px;
  border-top: 1px solid #dddddd;
  border-bottom: 1px solid #ddd;
}

.timerWrapper .timerBlock {
  display: inline-block;
  position: relative;
  border: 0;
  border-radius: 100%;
  padding: 40px 33px;
  min-width: 170px;
  margin: 0 17px;
}

.timerWrapper .timer {
  display: inline-block;
  font-size: 60px;
  line-height: 70px;
  color: #fff;
  font-style: normal;
  text-align: center;
  position: relative;
  top: -21px;
  left: -4px;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
}

.timerWrapper .timerBlock span {
  color: #fff;
  font-size: 20px;
  line-height: 36px;
  text-transform: uppercase;
  position: absolute;
  bottom: 20px;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
}

.commingWrapper p {
  font-family: 'Poppins', sans-serif;
  color: #fff;
  font-size: 15px;
  text-align: center;
  font-weight: 400;
  padding-bottom: 30px;
  width: 750px;
  line-height: 26px;
  margin: 0 auto;
}

.commingWrapper {
  background: url("../images/commingsoon_bg.jpg") no-repeat;
  background-size: cover;
  position: relative;
}

.commingWrapper:before {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  content: '';
  background: rgba(0, 0, 0, 0.6);
  right: 0;
}

.comming_shadow {
  width: 830px;
  margin: 0 auto;
}

.commingWrapper .sim-button {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 14px;
  color: #fff;
  width: 196px;
  height: 55px;
  line-height: 55px;
  border: 0;
  border-radius: 0;
}

.commingDescription form .simple-input {
  border: 0;
  max-width: 545px;
  border-radius: 0;
  height: 55px;
  display: inline-block;
  float: left;
  width: 100%;
  padding-left: 20px;
  font-size: 17px;
  color: #797979;
  font-weight: 400;
  font-family: 'Poppins', sans-serif;
}

.commingWrapper form {
  margin: 0 auto;
  width: 765px;
}

.commingWrapper a {
  text-decoration: none;
}

.commingDescription .wrapper-inner-tab-backgrounds-first {
  float: none;
}

.simple-input {
  font-size: 17px;
  color: #797979;
  line-height: 48px;
  height: 48px;
  padding: 0 20px;
  width: 100%;
  border: 1px solid #e0e0e0;
  background: #fff;
  font-family: 'Poppins', sans-serif;
  transition: all .15s;
  -webkit-transition: all .15s;
}

/* blog pages css */
/* blog without sidebar css */
.blog_withoutsidebar .blogs .date {
  left: 20px;
}

.blogs .date {
  background: #053357;
  width: 77px;
  height: 77px;
  padding: 16px 18px 16px 20px;
  position: absolute;
  top: 300px;
  left: 20px;
}

.blogs .date {
  top: 20px;
  text-align: center;
}

.blogs .blogInfo p {
  display: inline-block;
  font-size: 16px;
  font-family: 'Poppins', sans-serif;
  font-weight: 400;
  font-style: initial;
  text-align: left;
  padding-right: 5px;
  margin: 0;
}

.blog_withoutside i {
  padding-right: 8px;
  color: #f65245;
  font-size: 16px;
}

.blogInfo {
  text-align: left;
  padding-top: 0;
  padding-bottom: 15px;
  border-bottom: 1px solid #e4e4e4;
  margin-bottom: 25px;
}

.blog_withoutside .blog-title {
  margin-bottom: 10px;
  color: #053357;
  font-weight: 400;
  font-family: 'Poppins', sans-serif;
  font-size: 20px;
  text-transform: initial;
  line-height: 26px;
  margin-top: 0;
}

.blog_withoutside .blog-content {
  font-family: 'Open Sans', sans-serif;
  font-size: 15px;
  font-weight: 400;
  color: #898989;
  line-height: 26px;
  margin-bottom: 25px;
  margin-top: 12px;
}

.blog_withoutside .blog_btn {
  float: left;
  width: 130px;
}

.blog_withoutside .blogInfo {
  padding-top: 25px;
  padding-bottom: 25px;
}

.paginationWrapper {
  margin-top: 10px;
  margin-bottom: 10px;
  clear: both;
}

.completeblog {
  margin-bottom: 80px;
}

.blogs .date h5 {
  color: #fff;
  font-size: 30px;
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  margin-top: 0;
  margin-bottom: 0;
  letter-spacing: 2px;
  line-height: 26px;
}

.blogs .date span {
  color: #fff;
  font-size: 18px;
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
}

.paginationWrapper {
  position: relative;
}

.paginationWrapper a.activePagi, .paginationWrapper a:hover {
  color: #fff;
  background: #053357;
  border: 2px solid #053357;
  cursor: pointer;
  text-decoration: none;
  outline: none;
}

.nubmerPagination {
  display: inline-block;
}

.paginationWrapper a {
  border: 2px solid #d4d4d4;
  background: #fff;
  color: #2a2a2a;
  padding: 9px 16px;
  -webkit-transition: all 150ms linear;
  transition: all 150ms linear;
  margin-right: 10px;
  font-size: 18px;
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  text-decoration: none;
}

.blog_withoutside .blog-title:hover {
  color: #053357;
}

.completeblog {
  margin-bottom: 150px;
  position: relative;
}

/* blog with rightsidebar page css */
.searchWrapper {
  position: relative;
  margin-bottom: 50px;
  border-bottom: 1px solid #053357;
}

.searchWrapper .input1 {
  font-size: 15px;
  color: #898989;
  font-family: 'Poppins', sans-serif;
  font-weight: 400;
  padding: 0 26px;
  padding-left: 0;
  border: 0;
}

.searchWrapper .input1:focus {
  outline: none;
}

.searchWrapper .input1:active, .searchWrapper .input1:foucs {
  border: 0;
}

.searchWrapper .simple-input {
  height: 52px;
  padding-right: 50px;
  background: #fff;
  border-radius: 0;
  width: 100%;
}

.searchWrapper .searchBtn {
  padding: 16px 10px;
  position: absolute;
  top: 0;
  right: 0;
  -webkit-transition: all 150ms linear;
  transition: all 150ms linear;
  border: 0;
  background: #fff;
}

.icon {
  color: #053357;
  font-size: 16px;
}

.recentTitle .as {
  margin-bottom: 25px;
  color: #053357;
  font-size: 20px;
  font-weight: 400;
  font-family: 'Poppins', sans-serif;
  text-transform: uppercase;
  margin-top: 50px;
}

.categoriesList {
  position: relative;
  margin-bottom: 45px;
  padding: 0;
  list-style: none;
}

.categoriesList li {
  position: relative;
  border-bottom: 1px solid #e6e6e6;
  padding-bottom: 15px;
  margin-bottom: 13px;
}

.categoriesList li:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
}

.categoriesList li a {
  color: #595959;
  -webkit-transition: all 150ms linear;
  transition: all 150ms linear;
  font-family: 'Poppins', sans-serif;
  font-weight: 400;
  font-size: 15px;
  text-decoration: none;
}

.categoriesList li a:hover {
  color: #053357;
}

.recentNewsBlock a {
  font-weight: 400;
  line-height: 24px;
  margin-bottom: 7px;
  display: block;
  -webkit-transition: all 150ms linear;
  transition: all 150ms linear;
  font-family: 'Poppins', sans-serif;
  color: #053357;
  font-size: 16px;
}


.recentNewsBlock span {
    display: block;
    color: #f65245;
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
}

.tags {
  display: inline-block;
  border: 1px solid #e4e4e4;
  padding: 5px 16px;
  margin-bottom: 8px;
  color: #898989;
  -webkit-transition: all 150ms linear;
  transition: all 150ms linear;
  font-size: 15px;
  font-family: 'Poppins', sans-serif;
  text-transform: none;
  margin-right: 5px;
}

.tags.active, .tags:hover {
  background: #053357;
  color: #fff;
  text-decoration: none;
}

.blog_with_rightsidebar .categoriesList .fa-angle-right {
  position: absolute;
  right: 2px;
  left: auto;
  color: #898989;
}

.categoriesList li:last-child {
  border: 0;
}

.recentNews {
  border-bottom: 1px solid #e1e1e1;
  padding-bottom: 20px;
  margin-bottom: 20px;
}

.recentNews.last {
  border: 0;
  padding-bottom: 0px;
  margin-bottom: 0px;
}

.text-widget p {
  color: #898989;
  font-size: 15px;
  line-height: 26px;
  font-family: 'Poppins', sans-serif;
}

.recentTitle.last {
  margin-bottom: 30px;
}

.blog_with_rightsidebar .image-opacity-on-hover img, .blog_with_rightsidebar .image-zoom-on-hover img {
  width: 100%;
}

.blog_with_rightsidebar .paginationWrapper {
  padding-top: 12px;
}

.mainBlogContent {
  margin-right: 30px;
}

.blog_with_rightsidebar.blog_left_sidebar .mainBlogContent {
  margin-left: 0;
  margin-right: 30px;
}

/* blog_left_sidebar css */
.blog_left_sidebar .mainBlogContent {
  margin-left: 30px;
  margin-right: 0;
}

.blog_left_sidebar .completeblog {
  margin-bottom: 120px;
}

/* blog details page css */
blockquote {
  background: #f7f7f7;
  padding: 34px 40px 55px 110px;
  position: relative;
  border: 0;
  margin-bottom: 20px;
  margin-top: 25px;
}

blockquote i.fa {
  position: absolute;
  top: 18px;
  left: 33px;
  color: #f65245;
  font-size: 55px;
}

.blogdetails blockquote a {
  font-size: 16px;
  color: #f65245;
  font-family: 'Poppins', sans-serif;
  font-weight: 400;
  font-style: italic;
  float: right;
  margin-right: 10px;
}

blockquote a:hover, blockquote a:focus {
  color: #053357;
  text-decoration: underline;
}

.commentsWrapper .as {
  margin-top: 30px;
  border-bottom: 0;
  padding-bottom: 0;
  margin-bottom: 30px;
}

.tt-featured-title {
  color: #2a2a2a;
  font-size: 20px;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  margin-top: 0;
  text-transform: uppercase;
}

.commentsWrapper ol {
  margin-bottom: 0;
  list-style: none;
  padding: 0;
}

.commentBlock {
  position: relative;
  border: 1px solid #eeeeee;
}

.commentBlock li {
  border-bottom: 1px solid #eee;
}

.comment {
  position: relative;
  padding: 25px 70px 20px 25px;
}

.comment .commentContent {
  padding-left: 100px;
  margin-bottom: 5px;
  position: relative;
}

.blogWrapper .imgWrapper {
  margin-bottom: 23px;
}

.comment .imgWrapper {
  position: absolute;
  top: 0;
  left: 0;
}

.comment .commentContent a {
  color: #2a2a2a;
  -webkit-transition: all 150ms linear;
  transition: all 150ms linear;
  font-size: 15px;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  text-decoration: none;
}

.comment .commentTime {
  padding-left: 100px;
}

.comment .commentTime p {
  color: #2a2a2a;
  font-size: 13px;
  font-family: 'Poppins', sans-serif;
  font-weight: 400;
}

.comment .commentTime p a {
  color: #053357;
  -webkit-transition: all 150ms linear;
  transition: all 150ms linear;
  font-size: 13px;
  border-left: 1px solid #053357;
  padding-left: 7px;
  font-family: 'Poppins', sans-serif;
  margin-left: 7px;
  font-weight: 400;
  text-decoration: none;
}

.commentsWrapper .simple-text p {
  font-size: 15px;
  color: #898989
}

.commentBlock li ul li .comment {
  padding-left: 125px;
}

.commentBlock ul {
  padding-left: 0;
  list-style: none;
}

.commentsForm {
  position: relative;
  margin-top: 45px;
}

.commentsForm .as {
  margin-top: 0;
  margin-bottom: 25px;
  border-bottom: 0;
}

.commentsWrapper ol {
  margin-bottom: 0;
  list-style: none;
  padding: 0;
}

.commentsForm form {
  background: #f6f6f6;
  padding: 52px 67px 93px 30px;
  border: 1px solid #ddd;
}

.commentsForm .simple-input {
  font-size: 15px;
  color: #898989;
  line-height: 48px;
  height: 48px;
  padding: 0 20px;
  width: 100%;
  border: 1px solid #dddddd;
  background: #fff;
  transition: all .15s;
  -webkit-transition: all .15s;
  font-family: 'Poppins', sans-serif;
}

.commentsForm form textarea {
  height: 175px !important;
}

.commentsForm .button {
  padding: 16px 38px;
  color: #fff;
  background: #6ab43e;
  font-size: 13px;
}

.blogdetails.blog_with_rightsidebar.blog_left_sidebar .mainBlogContent {
  margin-bottom: 0;
}

.blogdetails.blog_left_sidebar .completeblog {
  margin-bottom: 0;
}

.blogdetails .blog-title {
  text-transform: initial;
}

.blogdetails .blog-content {
  margin-bottom: 0;
}

/* testimonial page css */
.testimonial_sec .image {
  vertical-align: middle;
  width: 100%;
  display: inline-block;
}

.testimonial_sec .image img {
  margin: 0 auto;
}

.testimonial_sec .content {
  display: inline-block;
  vertical-align: middle;
}

.testimonial_sec .simple-text p {
  font-size: 16px;
  color: #898989;
  font-family: 'Open Sans', sans-serif;
  font-weight: 400;
  line-height: 30px;
  margin-bottom: 0;
}

.testimonial_sec .content h3 {
  font-family: 'Poppins', sans-serif;
  font-weight: 400;
  font-size: 24px;
  color: #053357;
  margin-top: 0;
  margin-bottom: 10px;
}

.testimonial_sec .content h5 {
  font-family: 'Poppins', sans-serif;
  font-weight: 400;
  font-size: 15px;
  color: #898989;
  margin-bottom: 10px;
}

.star_rating {
  color: #fdb714;
}

.testimonial_sec .simple-text p {
  margin-top: 20px;
}

.testimonial_sec .icon {
  font-size: 40px;
  color: #f65245;
  text-align: center;
  margin-top: 20px;
}

.testi1 {
  background: #f1f1f1;
}

/* get A quote page css */
.pl0 {
  padding-left: 0;
}

.pr0 {
  padding-right: 0;
}

.getAquote_form {
  background: #f1f1f1;
  padding: 50px;
}

.getAquote_form label {
  font-family: 'Poppins', sans-serif;
  font-size: 15px;
  color: #898989;
  font-weight: 400;
  margin-bottom: 10px;
}

.getAquote_form .form-control {
  border: 1px solid #dddddd;
  height: 50px;
  border-radius: 0;
  padding: 6px 15px;
}

.getAquote_form input {
  color: #898989;
  font-family: 'Poppins', sans-serif;
  font-size: 15px;
  font-weight: 400;
  box-shadow: none;
  outline: none;
}

.getAquote_form input:focus {
  box-shadow: none;
  outline: none;
}

.getAquote_form textarea:focus {
  box-shadow: none;
  outline: none;
}

.getAquote_form .form-group {
  margin-bottom: 30px;
}

.getAquote_form textarea.form-control {
  height: 208px;
  padding-top: 25px;
  font-family: 'Poppins', sans-serif;
  font-size: 15px;
  font-weight: 400;
  box-shadow: none;
  outline: none;
}

.getAquote_form .sim-button {
  padding: 0;
}

.getAquote_form .image {
  margin-top: 28px;
}

.getAquote_form .simple-text {
  margin-top: 23px;
}

/* contact us page css */
.contact_us h4 {
  font-size: 18px;
  font-weight: 600;
  text-transform: uppercase;
  color: #053357;
  letter-spacing: 0.30px;
  font-family: 'Poppins', sans-serif;
  margin-top: 15px;
  margin-bottom: 15px;
}

.contact_us .icons_01 {
  color: #f65245;
  font-size: 45px;
}

.contact_us h5 {
  font-size: 17px;
  color: #f65245;
  font-weight: 600;
  font-family: 'Poppins', sans-serif;
  margin-top: 20px;
  margin-bottom: 0;
}

.contact_us .content {
  text-align: center;
}

.contact_form {
  background: #f1f1f1;
}

.contact_form h4 {
  font-size: 35px;
  font-family: 'Poppins', sans-serif;
  font-weight: 400;
  color: #053357;
  margin-top: 0;
  margin-bottom: 15px;
}

.contact_form .content {
  text-align: center;
}

.contact_form input {
  color: #898989;
  font-family: 'Poppins', sans-serif;
  font-size: 15px;
  font-weight: 400;
  box-shadow: none;
  outline: none;
}

.contact_form input:focus {
  box-shadow: none;
  outline: none;
}

.contact_form textarea:focus {
  box-shadow: none;
  outline: none;
}

.contact_form textarea.form-control {
  height: 100px;
  padding-top: 15px;
  color: #898989;
  font-family: 'Poppins', sans-serif;
  font-size: 15px;
}

.contact_form .form-control {
  border: 1px solid #dddddd;
  height: 49px;
  border-radius: 0;
  padding: 6px 15px;
}

.contact_form .form-group {
  margin-bottom: 20px;
}

.contact_form .form-group textarea {
  margin-bottom: 30px;
  box-shadow: none;
  outline: none;
}

.contact_form_01 {
  width: 900px;
  margin: 0 auto;
  margin-top: 40px;
}

.contact_form_01 .sim-button {
  padding: 0;
  height: 51px;
  border-radius: 0;
  line-height: 51px;
}

.contact_form_01 .button6:hover {
  border-radius: 0;
}

/* project page css */
.portfolio .border-left {
  border-left: 5px solid #f65245;
}

.portfolio .budget_1 ul li a {
  color: #2a2a2a;
  font-size: 16px;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  text-transform: uppercase;
  text-decoration: none;
}

.portfolio .budget_1 .list-inline {
  margin-bottom: 0;
}

.portfolio .budget_1 .list-inline>li {
  display: inline-block;
  padding-right: 25px;
  padding-left: 5px;
}

.portfolio .budget_1 .list-inline>li a.active, .portfolio .budget_1 .list-inline>li a:hover {
  color: #f65245;
}

.portfolio .portfolio-items .bugets1 p {
  margin-bottom: 0;
  color: #898989;
  font-family: 'Open Sans', sans-serif;
  font-size: 15px;
  font-weight: 400;
  line-height: 24px;
  padding-left: 15px;
padding-bottom: 10px;
}

.portfolio .portfolio-items .bugets1 h5 {
  color: #053357;
  font-family: 'Poppins', sans-serif;
  font-size: 18px;
  font-weight: 500;
  text-transform: uppercase;
  margin-top: 18px;
  margin-bottom: 5px;
  padding-left: 15px;
  letter-spacing: 0.30px;
}

.portfolio .portfolio-item {
  margin-top: 50px;
}

/* effect */
.gal-item a {
  display: block;
  position: relative;
}

.img-full {
  display: block;
  width: 100%;
}

.black-hover:hover .tour-layer {
  opacity: 1;
}

.delay-1 {
  -webkit-transition: all 800ms cubic-bezier(.23, 1, .32, 1);
  -moz-transition: all 800ms cubic-bezier(.23, 1, .32, 1);
  -o-transition: all 800ms cubic-bezier(.23, 1, .32, 1);
  transition: all 800ms cubic-bezier(.23, 1, .32, 1);
}

.gal-item a:hover .vertical-align {
  opacity: 1;
  margin-top: 0;
}

.gal-item .vertical-align, header.bg-black-o {
  -webkit-transition: all .5s ease-in-out;
  -moz-transition: all .5s ease-in-out;
  -o-transition: all .5s ease-in-out;
  transition: all .5s ease-in-out;
}

.gal-item .vertical-align {
  text-align: center;
  opacity: 0;
  margin-top: -50px;
}

.vertical-align {
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  top: 50%;
  position: absolute;
  width: 100%;
  left: 0;
}

.tour-layer {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(5,51,87, 0.8);
  opacity: 0;
  transition: all .3s ease-in;
  -webkit-transition: all .3s ease-in;
  -moz-transition: all .3s ease-in;
  -ms-transition: all .3s ease-in;
}

.portfolio-item .tour-layer {
  background: rgba(13, 57, 93, 0.8);
}

.delay-1 {
  -webkit-transition: all 800ms cubic-bezier(.23, 1, .32, 1);
  -moz-transition: all 800ms cubic-bezier(.23, 1, .32, 1);
  -o-transition: all 800ms cubic-bezier(.23, 1, .32, 1);
  transition: all 800ms cubic-bezier(.23, 1, .32, 1);
}

.portfolio .sim-button {
  float: none;
}

.portfolio .portfolio-items .bugets1 h5:hover {
  color: #053357;
}

/* project 4 columns page css */
.portfolio.portfolio4 .portfolio-items .bugets1 h5 {
  color: #fff;
  margin-bottom: 7px;
  margin-top: 0;
  padding-left: 0;
}

.portfolio.portfolio4 .portfolio-items .bugets1 p {
  color: #fff;
  margin: 15px;
  text-align:center;
  padding-right: 0;
  padding-left: 0;
  font-family: 'Poppins', sans-serif;
  font-size: 15px;
  text-transform: initial;
}
.portfolio.portfolio4 .portfolio-items .bugets1 p.title {
	
	text-transform:uppercase;
	  font-size: 17px;
}
.portfolio.portfolio4 .budget_1 .list-inline {
  margin-bottom: 0;
  text-align: center;
}

.portfolio.portfolio4 .portfolio-item {
  margin-top: 0;
}

.portfolio.portfolio4 .bugets1 {
  padding-left: 0;
  padding-right: 0;
}

.portfolio.portfolio4 .budget_1 .list-inline>li a.active, .portfolio.portfolio4 .budget_1 .list-inline>li a:hover {
  border-bottom: 2px solid #f65245;
  padding-bottom: 5px; 
}

/* header search css */
/* search button css start */
.tt-header .nav-more i {
  font-size: 18px;
  color: #fff;
}

.tt-header .nav-more .fa-times {
  display: none;
  padding-left: 0px;
}

.tt-header .nav-more {
  position: relative;
}

.tt-header .nav-more .tz-header-search-form.tz-header-search-form-show {
  top: 111%;
  visibility: visible;
  opacity: 1;
  right: -14px;
}

.tt-header .nav-more .tz-header-search-form {
  position: absolute;
  top: 110%;
  right: 0;
  width: 270px;
  visibility: hidden;
  opacity: 0;
  z-index: 999;
  -webkit-transition: all 0.3s ease-in-out 0s;
  -moz-transition: all 0.3s ease-in-out 0s;
  -ms-transition: all 0.3s ease-in-out 0s;
  -o-transition: all 0.3s ease-in-out 0s;
  transition: all 0.3s ease-in-out 0s;
}

.header4 .tt-header .nav-more .tz-header-search-form span {
  position: absolute;
  right: 45px;
  top: 17px;
  padding: 0;
  font-size: 14px;
  color: #fff;
  border: 0;
}

.tt-header .nav-more .tz-header-search-form input.Tzsearchform {
  box-shadow: 0 0 6px -1px rgba(0, 0, 0, 0.3);
}

.tt-header .nav-more .tz-header-search-form input {
  width: 100%;
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  color: #595959;
  padding: 15px 21px;
  border: none;
}

.tt-header .nav-more .tz-header-search-form input.searchsubmit {
  background: rgba(0, 0, 0, 0) none repeat scroll 0 0;
  display: block;
  font-size: 0;
  height: 20px;
  padding: 0;
  position: absolute;
  right: 9px;
  top: 14px;
  width: 20px;
  z-index: 9;
}

.tt-header .nav-more .tz-header-search-form input {
  width: 100%;
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  color: #595959;
  padding: 15px 21px;
  border: none;
}

.tt-header .nav-more span {
  color: #ffffff;
}

.tt-header .nav-more .tz-header-search-form span {
  position: absolute;
  right: 45px;
  top: 17px;
  padding: 0;
  font-size: 14px;
  color: #fff;
  border: 0;
}

.tt-header .nav-more span.icon_search:before {
  content: "\f002";
  font-family: "FontAwesome";
}

.tz-header-search span.icon_close:before {
  content: "\f00d";
  font-family: "FontAwesome";
}

/* button 6 css */
.button6 {
  z-index: 1;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
  border: none;
  position: relative;
  border-radius: 0;
}

.button6 a {
  color: rgba(51, 51, 51, 1);
  text-decoration: none;
  display: block;
}

.button6 span {
  z-index: 2;
  display: block;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  text-transform: uppercase;
}

.button6::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  opacity: 0;
  color: #fff;
  background-color: #053357;
  -webkit-transition: all 0.4s;
  -moz-transition: all 0.4s;
  -o-transition: all 0.4s;
  transition: all 0.4s;
  -webkit-transform: scale(0.5, 1);
  transform: scale(0.5, 1);
}

.button6:hover::before {
  opacity: 1;
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
}

.button6.bluebtn::before {
  background: #f65245;
}

/* porject-details page css */
.gray {
  color: #2a2a2a;
}

ul.check_011 li:before {
  content: "\f00c";
  position: absolute;
  font-family: FontAwesome;
  left: 15px;
  color: #f65245;
}

ul.check_011 li {
  list-style-type: none;
  font-size: 15px;
  font-family: 'Open Sans', sans-serif;
  line-height: 32px;
  color: #898989;
  font-weight: 400;
}

ul.check_011 {
  padding-left: 30px;
  margin-top: 20px;
  margin-bottom: 0;
}

.introduction_1 {
  background: #053357;
  padding: 35px 0px 47px 0px;
  font-family: 'Poppins', sans-serif;
}

.introduction_1 img {
  margin: 0 auto;
  margin-bottom: 15px;
}

.introduction_1 h4 {
  font-size: 30px;
  text-transform: uppercase;
  color: #f65245;
  text-align: center;
  font-weight: 600;
}

.introduction_12 ul li {
  color: #ffffff;
  list-style-type: none;
  text-align: center;
  font-size: 20px;
  font-family: 'Poppins', sans-serif;
  line-height: 40px;
  font-style: italic;
}

.introduction_12 ul {
  padding-left: 0px;
  margin-bottom: 0;
}

.img_left122 {
  padding-top: 9px;
}

.related_projects {
  background: #f1f1f1;
}

.related_projects .simple-text p {
  width: 500px;
  text-align: center;
  margin: 0 auto;
}

.related_projects .portfolio-item h5 {

	margin-top: 0px;
	margin-bottom: 5px;
	padding-left: 0px;
	font-size: 20px;
	color: #053357;
	font-weight: 400;
}

.related_projects .portfolio-item p {
  margin-bottom: 0;
  color: #898989;
  font-family: 'Poppins', sans-serif;
  font-size: 15px;
  font-weight: 400;
  line-height: 26px;
  padding-left: 0px;
}

.related_projects .border {
  background: #fff;
  padding: 30px 20px;
}

.related_projects .sim-button {
  float: none;
}

/* home page 2 css */
.header2 .top-line {
  background: #053357;
  padding: 15px 0;
}

.header2 .top-info i {
  font-size: 18px;
  padding-right: 5px;
}

.header2 .top-line-left {
  float: left;
}

.header2 .icon {
  font-size: 18px;
  color: #dadada;
}

.header2 .top-info {
  display: inline-block;
  position: relative;
  font-size: 15px;
  letter-spacing: 0.3px;
  padding-right: 20px;
  margin-right: 20px;
  vertical-align: middle;
  font-family: 'Open Sans', sans-serif;
  color: #dadada;
  line-height: 20px;
  font-weight: 500;
}

.header2 .top-line-right {
  float: right;
}

.header2 .top-line-right ul {
  padding-left: 0;
  margin-bottom: 0;
}

.header2 .top-social li {
  display: inline-block;
  margin-right: 12px;
}

.header2 .top-line-right .top-info a {
  font-size: 20px;
  color: #f65245;
  font-weight: 400;
  font-style: normal;
  font-family: 'Open Sans', sans-serif;
  text-decoration: none;
}

.header2 .top-line-right .top-info:before {
  content: '';
  display: block;
  position: absolute;
  top: 50%;
  right: 0;
  width: 1px;
  height: 16px;
  margin-top: -8px;
  background: #6f6f70;
}

.header2 .top-line-right .top-info:last-child::before {
  display: none;
}

.header2 .top-line-right .top-info:last-child {
  padding-right: 0;
  margin-right: 0;
}

.header2 .top-line-right .top-info ul li a {
  font-size: 16px;
  color: #dadada;
}
.header2 .top-line-right .top-info ul li a:hover {
    color: #f65245;
}
.header2 .icon-Pointer:before {
  vertical-align: middle;
  padding-right: 6px;
}

@media(min-width:992px) {
  .header2 .tt-header .top-inner {
    float: left;
    padding-top: 0;
  }

  .header2 .tt-header .toggle-block {
    float: right;
  }

  .header2 .tt-header .main-nav>ul>li>a {
    color: #2a2a2a;
  }

  .header2 .tt-header {
    background: #fff;
    padding: 0px 0px;
  }

  .header2 .tt-header .main-nav>ul>li>ul {}

  .header2 .tt-header.stick {
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
    padding: 0px 0px;
  }

  .header2 .tt-header .main-nav>ul>li:hover, .header2 .tt-header .main-nav>ul>li.active {
    background: transparent;
  }
  .header2 .tt-header .main-nav>ul>li.active > a{
    color: #f65245;
  }
  .header2 .tt-header .main-nav>ul>li>a {
    padding: 36px 20px;
  }

  .header2 .tt-header.stick .main-nav>ul>li>a {
    padding: 30px 20px;
  }

  .header2 .tt-header.stick .top-line-right {
    padding-top: 20px;
  }

  .header2 .wrapper-inner-tab-backgrounds-first {
    margin-top: 0;
  }

  .header2 .tt-header .top-line-right {
    float: right;
    padding-top: 25px;
    vertical-align: middle;
  }

  .header2 .tt-header .logo {
    line-height: 74px;
    margin-top: 0;
  }

  .header2 .tt-header.stick .logo {
    line-height: 68px;
    margin-top: 0;
  }

  .header2 .sim-button {
    line-height: 46px;
    height: 46px;
    width: 195px;
  }
}

.hm2slider .slider_content {
  float: left;
  background-color: rgba(255, 255, 255, 0.6);
  padding: 20px 30px;
  width: 48%;
}

.hm2slider .slider_content h3 {
  color: #053357;
}

.hm2slider .slider_content h3 span {
  color: #f65245;
}

.hm2slider .tt-mslide-entry:before {
  background: transparent;
  width: 50%;
  position: absolute;
  left: 0;
  content: '';
  top: 0;
  bottom: 0;
  right: 0;
}

.hm2slider .tt-mslide-title p {
  color: #222;
  font-size: 15px;
}

.header_strip {
  background: url("../images/home2/header-strip_bg.jpg") no-repeat;
  background-size: cover;
  padding: 40px 0;
}

.header_strip .tt-title {
  color: #053357;
  line-height: 40px;
  font-weight: 500;
}

.header_strip .border_right {
  border-right: 2px solid #898989;
  height: 70px;
  position: absolute;
  right: 0;
  top: 5px;
}

.header_strip .simple-text p {
  padding-left: 42px;
}

.business_01 .tt-title {
  color: #053357;
}

.business_01 .simple-text p:first-child {
  padding-bottom: 20px;
}

.business_01 .sim-button {
  margin-top: 30px;
}

.strip_01 {
  background-size: cover;
  position: relative;
  background-attachment: fixed;
  background-position: center;
}

.strip_01.no-bg-img {
  background: #053357
}

.strip_01:before {
  background: #053357;
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  right: 0;
  content: '';
}


.strip_01 h2 {
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
    color: #fff;
    font-size: 40px;
    text-align: center;
    position: relative;
    letter-spacing: 0.30px;
    line-height: 46px;
    width: 950px;
    margin: 0 auto;
}

.strip_01 h2 span {
  color: #f65245;
}

.services_02 {
  background: #f1f1f1;
}

.services_02 .content_01 .simple-text p {
  width: 500px;
  margin: 0 auto;
}

.services_02 .owl-nav {
  display: none;
}

.hm2projects .simple-text p {
  width: 500px;
  margin: 0 auto;
  text-align: center;
}

.hm2projects ul {
  margin-bottom: 0;
}

/* news section css */
.latest_news2 {
  background: #ffffff;
}

.latest_news2 .simple-text p {
  width: 500px;
  margin: 0 auto;
  text-align: center;
}

.latest_news2 .news_grid1 {
  background: url(../images/home2/news1.jpg) no-repeat 0px 0px;
  background-size: cover;
  min-height: 300px;
  -webkit-transition: 0.5s all;
  -ms-transition: 0.5s all;
  -o-transition: 0.5s all;
  -moz-transition: 0.5s all;
}

.latest_news2 .news_grid2 {
  background: url(../images/home2/news2.jpg) no-repeat 0px 0px;
  background-size: cover;
  min-height: 300px;
  -webkit-transition: 0.5s all;
  -ms-transition: 0.5s all;
  -o-transition: 0.5s all;
  -moz-transition: 0.5s all;
}

.latest_news2 .news_grid3 {
  background: url(../images/home2/news3.jpg) no-repeat 0px 0px;
  background-size: cover;
  min-height: 300px;
  -webkit-transition: 0.5s all;
  -ms-transition: 0.5s all;
  -o-transition: 0.5s all;
  -moz-transition: 0.5s all;
}

.latest_news2 .news_grid_info {
  background: #053357;
  padding: 40px;
  height: 300px;
  display: none;
  -webkit-transition: 0.5s all;
  -ms-transition: 0.5s all;
  -o-transition: 0.5s all;
  -moz-transition: 0.5s all;
opacity:.8;
}

.latest_news2 .news_grid1:hover .news_grid_info, .news_grid2:hover .news_grid_info, .news_grid3:hover .news_grid_info {
  display: block;
  transition: 1s ease;
  -webkit-transition: 1s ease;
  -ms-transition: 1s ease;
  -o-transition: 1 ease;
  -moz-transition: 1s ease;
}

.latest_news2 .news_grid_info p.date {
  font-size: 16px;
  letter-spacing: 0.30px;
  color: #fff;
  font-family: 'Open Sans', sans-serif;
  font-weight: 400;
}

.latest_news2 .news_grid_info p {
  font-size: 15px;
  letter-spacing: 0.30px;
  line-height: 26px;
  margin-bottom: 10px;
  font-family: 'Open Sans', sans-serif;
  color: #ffffff;
  font-weight: 400;
}

.latest_news2 .news_grid_info h3 {
  text-transform: capitalize;
  font-size: 18px;
  letter-spacing: 0.30px;
  margin-bottom: 10px;
  font-family: 'Poppins', sans-serif;
  font-weight: 500;
  color: #f65245;
  line-height: 26px;
  margin-top: 10px;
}

.latest_news2 .news_grid_info a {
  font-size: 15px;
  text-transform: capitalize;
  color: #fff;
  font-weight: 400;
  letter-spacing: 0.30px;
  font-family: 'Poppins', sans-serif;
}

.latest_news2 .news_grid_info i {
  color: #f65245;
}
.latest_news_fancy h5
{
	color: #f65245;
    font-family: 'Poppins', sans-serif;
    font-size: 18px;
    font-weight: 700;
    text-transform: uppercase;
    margin-top: 0;
    margin-bottom: 5px;
    letter-spacing: 0.30px;
}
.latest_news_fancy p
{
    margin-bottom: 0;
    color: #fff;
    font-family: 'Poppins', sans-serif;
    font-size: 15px;
    font-weight: 400;
    line-height: 26px;
    padding: 0 15px;
    padding-top: 5px;
}

.latest_news_fancy .sim-button
{
	margin-top:15px;
	float:none;
}
.request-form{
	padding:80px 0 0 0;}

/* client say section css */
.white {
  color: #fff !important;
}

.client_say_content {
  position: relative;
}

.client_say {
  background: url("../images/home2/client_bg.jpg") no-repeat;
  background-size: cover;
  position: relative;
  padding-bottom: 40px;
  background-attachment: fixed;
  background-position: center right;
  z-index: 1;
}

.client_say:before {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  content: '';
  background: rgba(12, 55, 89, 0.9);
}

.client_say .owl-carousel.owl-drag .owl-item {
  padding: 30px;
  padding-left: 15px;
  padding-right: 15px;
  background: rgba(13, 42, 67, 0.80);
  border: 0;
}

.client_say .owl-carousel .owl-item img {
  width: auto;
}

.client_say .test_slider .content p {
  font-family: 'Poppins', sans-serif;
  font-size: 13px;
  color: #fff;
  font-weight: 400;
  margin-bottom: 0;
}

.client_say .test_slider .right_content p {
  font-family: 'Open Sans', sans-serif;
  font-size: 15px;
  color: #fff;
  font-weight: 400;
  line-height: 26px;
  font-style: italic;
  margin-bottom: 0;
  letter-spacing: 0.30px;
}

.client_say .test_slider .content h4 {
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  color: #fff;
  font-weight: 600;
  margin-bottom: 5px;
  letter-spacing: 0.30px;
}

.client_say .test_slider .image {
  display: inline-block;
  float: left;
  padding-right: 30px;
}

.client_say .test_slider .content {
  border-right: 1px solid #bfbfbf;
  height: 70px;
  display: inline-block;
  padding-right: 35px;
  padding-top: 6px;
}

.test_slider {
  width: 820px;
  margin: 0 auto;
}

.client_say .left_content {
  padding-top: 4px;
}

.client_say .simple-text p {
  width: 820px;
  margin: 0 auto;
}

.client_say .owl-nav {
  display: none;
}

.client_say .owl-theme .owl-dots .owl-dot span {
  width: 12px;
  height: 12px;
  margin: 5px 7px;
  background: #fff;
  display: block;
  -webkit-backface-visibility: visible;
  transition: opacity .2s ease;
  border-radius: 30px;
  float: none;
  margin: 0 auto;
  padding-right: 10px;
}

.client_say .owl-theme .owl-dots {
  transform: rotate(-90deg);
}

.client_say .owl-theme .owl-dots .owl-dot {
  padding-top: 10px;
}

.client_say .owl-theme .owl-dots .owl-dot.active span {
  background: #f65245;
}

.request_free_02 {
  background: #f5f5f5;
}

.request_free_02 .right_content {
  width: 54%;
  float: right;
  background: #dde3e9;
  padding: 45px 30px;
  margin-right: 18px;
}

.request_free_02 .request_contact .form-group input {
  border: none;
  background: #ffffff;
}

.request_free_02 .request_contact .form-group textarea {
  border: none;
  background: #ffffff;
}

/* home page 3 css */
.header3 .top-info i {
  font-size: 18px;
  padding-right: 5px;
}

.header3 .top-info {
  display: inline-block;
  position: relative;
  font-size: 15px;
  letter-spacing: 0.3px;
  padding-right: 0;
  margin-right: 0;
  vertical-align: middle;
  font-family: 'Poppins', sans-serif;
  color: #dadada;
  line-height: 20px;
  font-weight: 500;
}

.header3 .top-line {
  background: #053357;
  padding: 15px 0;
}

.header3 .top-line-left {
  float: left;
}

.header3 .top-line-right {
  float: right;
}

.header3 .top-line-right .top-info a {
  font-size: 20px;
  color: #f65245;
  font-weight: 400;
  font-style: normal;
  font-family: 'Poppins', sans-serif;
  text-decoration: none;
}

.header3 .top-line-right .top-info a:hover
{
	color: #fff;
}

.header3 .icon {
  font-size: 18px;
  color: #dadada;
}

.header3 .icon-Pointer:before {
  vertical-align: middle;
  padding-right: 6px;
}

@media(min-width:992px) {
  .header3 .tt-header {
    background: transparent;
    margin-bottom: -32px;
  }

  .header_03 {
    background: #053357;
    height: 64px;
  }

  .header3 .tt-header.stick {
    background: #053357;
    width: 100%;
    margin: 0 auto;
    margin-bottom: 0px;
    position: fixed;
  }

  .header3 .tt-header .toggle-block {
    display: block !important;
    float: left;
  }

  .header3 .tt-header .top-social li:last-child {
    display: inline-block;
    margin-right: 18px;
  }
}

.hmslider3 .tt-mslide-title h3 {
  color: #fff;
}

.hmslider3 .tt-mslide-title p {
  color: #fff;
}

.hmslider3 .tt-mslide-entry:before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  content: '';
  background: rgba(65, 65, 65, 0.1);
}

.hmslider3 .wrapper-inner-tab-backgrounds-first {
  float: left;
  width: 100%;
  width: 350px;
}

.hmslider3 .sim-button.bluebtn {
    color: #fff;
}

.hmslider3 .sim-button.bluebtn:hover {
  color: #fff
}

.hmslider3 .sim-button.yellowbtn {
    color: #fff;
}

.hmslider3 .sim-button.yellowbtn:hover {
  color: #fff
}
.strip.home3_strip .button6:hover{
	color: #053357 ;
}
.strip.home3_strip .button6::before {
	background-color: #fff;
}
.about_us_03 blockquote {
  background: transparent;
  padding: 16px 40px 0px 95px;
  margin-left: 15px;
  margin-bottom: 0;
  margin-top: 5px;
}

.about_us_03 blockquote .simple-text p {
  font-size: 16px;
  font-style: italic;
}

.about_us_03 blockquote i.fa {
  position: absolute;
  top: 18px;
  left: 33px;
  color: #053357;
  font-size: 35px;
}

.about_us_03 .content {
  padding-left: 25px;
}

.about_us_03 .tt-title {
  font-size: 40px;
}

.what_we_offers_03 {
  background: url("../images/home3/what_we_bg.jpg") no-repeat;
  background-size: cover;
  background-attachment: fixed;
  background-position: center right;
}

.what_we_offers_03 .content_02 {
  text-align: center;
  background: #f1f1f1;
  padding: 40px 50px;
}

.what_we_offers_03 .content_02:hover {
  background: #053357;
}

.what_we_offers_03 .content_02:hover .icon {
  color: #fff;
}

.what_we_offers_03 .content_02:hover .tt-sub-title-sub {
  color: #fff;
  font-weight: 600;
}

.what_we_offers_03 .content_02:hover .simple-text p {
  color: #fff;
}

.what_we_offers_03 .content_02 .icon {
  color: #f65245;
  font-size: 30px;
}

.what_we_offers_03 .content_02 .tt-sub-title-sub {
  margin-bottom: 8px;
  letter-spacing: 0.30px;
}

.portfolio.portfolio5 .budget_1 .list-inline>li a.active, .portfolio.portfolio5 .budget_1 .list-inline>li a:hover {
  border-bottom: 2px solid #f65245;
  padding-bottom: 5px;
}

.portfolio.portfolio5 .portfolio-item {
  margin-top: 40px;
}

.request_free_03 {
  background: #053357;
}

.request_free_03 .simple-text p {
  color: #fff;
  width: 750px;
  margin: 0 auto;
  text-align: center;
}

.request_free_03 .request_contact {
  margin-top: 46px;
}
.btn-right .sim-button{
  float: right;
}
.request_free_03 .request_contact .form-group input {
  height: 45px;
  border: 1px solid #dddddd;
  background: transparent;
}

.request_free_03 .request_contact .form-group input::placeholder {
  color: #898989;
}

.request_free_03 .request_contact .sim-button {
  width: 100%;
}

.request_free_03 .request_contact .form-control:focus {
  border: 1px solid #dddddd;
}

.request_free_03 .request_contact .form-group {
  margin-bottom: 20px;
}

/* latest news section css */
.latest_news_03 {
  background: #f6f6f6;
}

.latest_news_03 .tt-news-img {
  margin-bottom: 34px;
}

.latest_news_03 .tt-news-title {
  display: inline-block;
  font-family: 'Poppins', sans-serif;
  font-size: 18px;
  line-height: 26px;
  font-weight: 500;
  color: #2a2a2a;
  margin-bottom: 10px;
  margin-top: 25px;
}

.latest_news_03 .tt-news-title:hover {
  color: #053357;
}

.latest_news_03 .tt-news .simple-text {
  margin-bottom: 15px;
}

.latest_news_03 .tt-news .simple-text p {
  color: #898989;
}

.latest_news_03 .tt-news-link {
  font-size: 15px;
  line-height: 19px;
  font-weight: 600;
  color: #053357;
  font-family: 'Poppins', sans-serif;
}

.latest_news_03 .tt-news-link:hover {
  text-decoration: underline;
}

.tt-archive {
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
  border: 1px solid #d9d9d9;
}

.tt-archive li {
  padding: 20px 30px 20px 30px;
  border-bottom: 1px solid #d9d9d9;
  -webkit-transition: all 300ms ease-in-out;
  -moz-transition: all 300ms ease-in-out;
  transition: all 300ms ease-in-out;
  background: #ffffff;
}

.tt-archive li:last-child {
  border-bottom: 0;
}

.tt-archive-title:hover a {
  color: #fff;
}

.tt-archive-title {
  display: inline-block;
  font-family: 'Poppins', sans-serif;
  font-size: 18px;
  line-height: 24px;
  font-weight: 500;
  color: #053357;
  margin-bottom: 10px;
  text-decoration: none;
}

.tt-archive-bottom {
  font-size: 15px;
  line-height: 19px;
}

.tt-archive-bottom span {
  display: inline-block;
  margin-right: 20px;
  color: #898989;
  font-family: 'Poppins', sans-serif;
}

.tt-archive-bottom span:last-child {
  margin-right: 0;
}

.tt-archive-all {
  font-size: 15px;
  line-height: 19px;
  font-weight: 700;
  color: #053357;
  font-family: 'Poppins', sans-serif;
}

.tt-archive li:hover .tt-archive-all {
  color: #fff;
  text-decoration: none;
}

.tt-archive li:hover {
  background: #053357;
}

.tt-archive li:hover .tt-archive-title {
  color: #fff;
  text-decoration: none;
}

.tt-archive li:hover .tt-archive-bottom span {
  color: #fff;
}

.tt-archive li:hover .tt-archive-title:hover {
  color: #fff;
}

/* home page 4 css */
@media(min-width:992px) {
  .header4 {
   /* border-bottom: 1px solid #98a5ab;*/
    background: rgba(0, 0, 0, 0.10);
    position: absolute;
    width: 100%;
    clear: both;
    z-index: 2;
  }

  .header4 .tt-header {
    background: transparent;
  }

  .header4 .tt-header.stick {
    background: #fff;
  }

  .header4 .tt-header.stick .main-nav>ul>li>a {
    color: #2a2a2a;
  }

  .header4 .tt-header.stick .tz-header-search span.icon_close {
    color: #2a2a2a;
  }

  .header4 .tt-header.stick .tz-header-search span.icon_search.tz_icon_search {
    color: #2a2a2a;
  }

  .header4 .tt-header.stick .nav-more {
    padding: 28px 0px;
  }

  .header4 .tt-header .main-nav>ul>li>a {
    color: #fff;
  }

  .header4 .tt-header .nav-more {
    padding: 34px 0px;
    margin-right: 10px;
  }

  .header4 .tt-header .nav-more .tz-header-search-form.tz-header-search-form-show {
    top: 107%;
  }
}

.header4 .header_top_inner {
  overflow: hidden;
  clear: both;
  border-bottom: 1px solid #7c899f;
}

.header4 .header_top_inner .pull-left i {
  padding-right: 3px;
}

.header4 .header_top_inner .pull-left a {
  line-height: 48px;
  font-size: 15px;
  color: #fff;
  font-family: 'Open Sans', sans-serif;
  letter-spacing: .45px;
  margin-right: 22px;
  -webkit-transition: all 150ms linear;
  -o-transition: all 150ms linear;
  transition: all 150ms linear;
  text-decoration: none;
}

.header4 .header_top_inner .pull-left a:last-child {
  margin-right: 0;
}

.header4 .header_social li {
  display: inline-block;
  margin-right: 16px;
}

.header4 .header_social li a {
  line-height: 48px;
  font-size: 16px;
  color: #d6d6d6;
  -webkit-transition: all 400ms linear 0s;
  -o-transition: all 400ms linear 0s;
  transition: all 400ms linear 0s;
  text-decoration: none;
}
.header4 .header_social li a:hover
{
	color: #f65245;
}
.header4 .header_social li:last-child {
  margin-right: 0;
}

.header4 .header_social {
  margin-bottom: 0;
  padding-left: 0;
}

.hm4slider .tt-mslide-entry {
  height: 789px;
  padding-bottom: 255px;
}

.hm4slider .tt-mslide-entry:before {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: rgba(12, 12,25, 0.2);
  content: '';
}

.hm4slider .slider_content h3 span {
  color: #f65245;
}

.hm4slider .slider_content {
  width: 50%;
  float: none;
  text-align: left;
}

.hm4slider .tt-mslide-title h3 {
  text-align: left !important;
  color: #fff;
  margin-bottom: 5px;
  background-color: rgba(5, 51, 87, 0.8);
  display: inline-block;
  padding: 4px;
  margin-top: 0;
  line-height: 50px;
  font-size: 50px;
  font-family: 'Poppins', sans-serif;
}

.hm4slider .tt-mslide-title {
  text-align: left !important;
  margin: 0;
  font-size: inherit;
}

.hm4slider .tt-mslide-title p {
  text-align: left;
  color: #fff;
  width: 510px;
  margin: 0;
}

.hm4slider .slider_content .sim-button {
  float: left;
  margin-top: 20px;
}

/* */
.what_we_offers_05 {
  background: 0;
  margin-top: -117px;
  z-index: 1;
}

.what_we_offers_05:before {
  display: none;
}

.what_we_offers_05 ul {
  margin-bottom: 0;
  box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
  overflow: hidden;
}

/* */
.step_forward .tt-title {
  font-size: 40px;
  line-height: 50px;
  font-family: 'Poppins', sans-serif;
}

.step_forward .border_bottom {
  width: 99px;
  height: 2px;
  background: #f65245;
  margin: 0;
}

.step_forward .simple-text p {
  margin-bottom: 15px;
}

.step_forward .simple-text p:last-child {
  margin-bottom: 0px;
}

.step_forward .sim-button {
  margin-top: 30px;
}

.our_projects_04 .viewmore {
  font-size: 14px;
  color: #f65245;
  font-weight: 600;
  font-family: 'Poppins', sans-serif;
  text-transform: uppercase;
  float: right;
 
  margin-top: 10px;
}

.client_say_04 {
  background: url("../images/home4/client_bg.jpg") no-repeat;
  background-size: cover;
  position: relative;
  background-attachment: fixed;
  background-position: center right;
}

.client_say_04:before {
  position: absolute;
  content: '';
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background: #053357;
  opacity: 0.70;
}

.client_say_04 .tt-title {
  position: relative;
}

.client_say_04 .content {
  position: relative;
}

.client_say_04 .owl-carousel .owl-item img {
  width: auto;
  margin: 0 auto;
}

.client_say_04 .content {
  text-align: center;
}

.client_say_04 .content h5 {
  font-family: 'Poppins', sans-serif;
  font-weight: 400;
  font-size: 16px;
  color: #fff;
}

.client_say_04 .content p {
  font-size: 15px;
  color: #ffffff;
  font-family: 'Open Sans', sans-serif;
  font-weight: 600;
  letter-spacing: 0.30px;
  font-style: italic;
  line-height: 26px;
  width: 810px;
  margin: 0 auto;
}

.client_say_04 .owl-theme .owl-dots .owl-dot span {
  width: 12px;
  height: 12px;
  margin: 5px 7px;
  background: #fff;
  display: block;
  -webkit-backface-visibility: visible;
  transition: opacity .2s ease;
  border-radius: 30px;
  float: none;
  margin: 0 auto;
  padding-right: 10px;
}

.client_say_04 .owl-theme .owl-dots .owl-dot {
  padding-top: 10px;
}

.client_say_04 .owl-theme .owl-dots {
transform: rotate(-90deg);
}

.client_say_04 .owl-theme .owl-dots .owl-dot.active span {
  background: #f65245;
}

.client_say_04 .owl-nav {
  display: none;
}

.latest_news2.latest_news4 {
  padding-top: 80px;
  ;
}

/* home page 5 css */
.header5 .header_top {
  background: #053357;
}

.header5 .header-right-info ul li .single-header-right-info .icon-box i {
  color: #ffffff;
  transform: rotate(-90deg);
}

.header5 .header-right-info ul li .single-header-right-info .icon-box {
  float: left;
  width: 40px;
  height: 40px;
  border: none;
  text-align: center;
  margin-right: 25px;
  margin-top: 6px;
  background-color: #f65245;
  transform: rotate(90deg);
  border-radius: 4px;
}

.header5 .header-right-info ul li .single-header-right-info .text-box h5 {
  color: #cbcbcb;
}

.header5 .header-right-info ul li .single-header-right-info .text-box p, .header5 .header-right-info ul li .single-header-right-info .text-box p a {
  color: #d8dde1;
}
.header5 .header_top .top-info .top-social li a:hover
{
	  color: #fff;
}
.header5 .header_top .top-info .top-social li a {
  color: #f65245;
  font-size: 18px;
}

.header5 .header-right-info .top-social ul li {
  padding-right: 20px;
}

.header5 .header-right-info .top-social ul li:last-child {
  padding-right: 0;
}

.header5 .header-right-info ul li .single-header-right-info {
  padding-right: 50px;
}

.header5 .header-right-info ul li .single-header-right-info.last {
  padding-right: 0px;
}

.header5 .header-right-info ul li {
  padding-right: 0px;
}

.header5 .header-right-info .top-social li {
  padding-right: 20px;
}

.header5 .header-right-info .top-social li:last-child {
  padding-right: 0;
}

.header5 .header-right-info .top-social {
  margin-left: 25px;
}

@media(min-width:992px) {
  .header5 .tt-header .main-nav>ul>li>a {
    color: #2a2a2a;
    text-decoration: none;
  }

  .header5 .tt-header {
    background: #fff;
  }

  .header5 .tt-header .top-line-right {
    padding-top: 0px;
  }

  .header5 .tt-header .main-nav>ul>li.active>a, .header5 .tt-header .main-nav>ul>li:hover>a {
    color: #fff;
  }

  .header5 .tt-header .tz-header-search span.icon_close:before {
    color: #2a2a2a;
  }

  .header5 .tt-header .tz_icon_search:before {
    color: #2a2a2a;
  }

  .header5 .tt-header.stick .fa-search:before {
    color: #fff;
  }

  .header5 .tt-header.stick {
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
  }
}

.header5 .sim-button {
  line-height: 64px;
  height: 64px;
  text-align: center;
  margin-right: auto;
  margin-left: auto;
  width: 167px;
  border: 0;
}

.header5 .wrapper-inner-tab-backgrounds-first {
  margin-top: 0;
}

/* slider form css */
.slider5 .tt-mslide-entry .simple-text {
  margin-bottom: 0px;
}

.slider_form_05 {
  background: #eaedef;
  padding: 35px 30px 30px 30px;
}

.slider_form_05 .tt-title {
  color: #053357;
  font-weight: 700;
  text-transform: uppercase;
  text-align: left;
}

.slider_form_05 .simple-text p span {
  color: #f65245;
  font-weight: 600;
}

.slider_form_05 .simple-text p {
  margin-top: 10px;
  margin-bottom: 15px;
  text-align: left;
}

.slider_form_05 input {
  border-radius: 0px;
  margin-top: 10px;
  height: 45px;
  border: 1px solid #dddddd;
  font-size: 15px;
  color: #898989;
  font-weight: 400;
  font-family: 'Poppins', sans-serif;
  padding-left: 15px;
}

.slider_form_05 input::placeholder {
  color: #898989;
}

.slider_form_05 textarea {
  width: 100%;
  height: 100px;
  resize: none;
  border: 1px solid #dddddd;
  font-size: 15px;
  padding: 15px;
  padding-top: 10px;
}

.slider_form_05 textarea::placeholder {
  color: #898989;
  font-weight: 400;
  font-family: 'Poppins', sans-serif;
}

.slider_form_05 .sim-button {
  width: 221px;
  height: 47px;
  line-height: 47px;
}

.slider_form_05 .form-group {
  margin-bottom: 10px;
}

.slider_form_05 {
  position: absolute;
  top: 80px;
  z-index: 9;
  right: 0;
}

.slider5 .slider_content {
  width: 42%;
  float: right;
  position: relative;
}

/*  */
.strip_05 {
  background-image: url("../images/home5/strip_bg.jpg");
  background-size: cover;
  background-attachment: fixed;
  background-position: center right;
}

.strip_05:before {
  background: #053357;
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  content: '';
}

.border-left22 h5 {
  font-size: 18px;
  text-transform: uppercase;
  text-align: center;
  font-family: 'Open Sans', sans-serif;
  font-weight: 600;
  color: #F65245;
  margin-top: 5px;
  margin-bottom: 5px;
}

.border-left22.last {
  border-right: 0;
}

.border-left22 h2 {
  font-size: 50px;
  color: #fff;
  text-align: center;
  font-family: 'Poppins', sans-serif;
  margin-top: 0;
  font-weight: 400;
  margin-bottom: 0;
}

.service_sec_05 .viewmore {
  font-size: 14px;
  color: #f65245;
  font-weight: 400;
  font-family: 'Open Sans', sans-serif;
  text-transform: uppercase;
  float: right;
 margin-top: 10px;
}

.service_sec_05 {
  background: #f1f1f1;
}

.service_sec_05 .owl-nav {
  display: none;
}

.our_experts_05 {
  background: url("../images/home5/expert_bg.jpg") no-repeat;
  background-size: cover;
  position: relative;
  background-attachment: fixed;
  background-position: center right;
}

.our_experts_05:before {
  background: #053357;
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  opacity: 0.73;
  content: '';
}

.our_experts_05 .content_05 {
  position: relative;
}
.our_projects_05 {
  background:#f1f5f9;
}


.our_projects_05 .viewmore {
  font-size: 14px;
  color: #f65245;
  font-weight: 700;
  font-family: 'Poppins', sans-serif;
  text-transform: uppercase;
  float: right;
  text-decoration: underline;
  margin-top: 10px;

}

/* virtual_tour section css*/
.virtual_tour {
  background: url("../images/home5/virtual_bg.jpg") no-repeat;
  background-size: cover;
  position: relative;
  background-attachment: fixed;
  background-position: center right;
}

.virtual_tour:before {
  background: #053357;
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  opacity: 0.80;
  content: '';
}

.virtual_tour .popup-youtube i {
  padding-left: 10px;
}

.video_business_inner {
  max-width: 517px;
  position: relative;
  z-index: 2;
}

.video_business_inner a {
  height: 98px;
  width: 98px;
  border: 3px solid #fff;
  border-radius: 50%;
  text-align: center;
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translateX(-50%) translateY(-50%);
  -ms-transform: translateX(-50%) translateY(-50%);
  transform: translateX(-50%) translateY(-50%);
  z-index: 2;
  font-size: 40px;
  line-height: 96px;
  color: #f65245;
  background: rgba(0, 0, 0, 0.12);
}

.virtual_tour h4 {
  color: #dddddd;
  font-size: 20px;
  font-family: 'Poppins', sans-serif;
  font-weight: 300;
  margin-top: 7px;
}

.virtual_tour .simple-text p {
  color: #dddddd;
  margin-bottom: 30px;
}

/* client carousel */
.client_say_05 {
  background: url("../images/home5/client_bg.jpg") no-repeat;
  background-size: cover;
  position: relative;
  background-attachment: fixed;
  background-position: center right;
}

.client_say_05:before {
  background: #053357;
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  opacity: 0.90;
  content: '';
}

.client_say_05 .tt-testimonial-info {
  background: 0;
  border: 1px solid #646476;
}

.client_say_05 .tt-testimonial-name {
  color: #fff;
  font-size: 15px;
  font-family: 'Poppins', sans-serif;
  font-weight: 400;
}

.client_say_05 .tt-testimonial-position {
  color: #f65245;
  font-weight: 400;
  font-family: 'Poppins', sans-serif;
  font-size: 12px;
  text-transform: uppercase;
  margin-top: 3px;
}

.client_say_05 .tt-testimonial-info:after {
  background: url(../images/home5/decor5.png);
  display: block;
  position: absolute;
  top: 100%;
  left: 68px;
  width: 27px;
  height: 22px;
  content: '';
}

.client_say_05 .swiper-pagination.relative-pagination {
  display: block;
}

.client_say_05 .tt-testimonial-info {
  position: relative;
  background: transparent;
  -moz-border-radius: 3px;
  border-radius: 3px;
  padding: 33px 14px 36px 71px;
  margin-bottom: 30px;
  -webkit-box-shadow: 0px 0px 12px 0px rgba(0, 0, 0, 0.05);
  -moz-box-shadow: 0px 0px 12px 0px rgba(0, 0, 0, 0.05);
  box-shadow: 0px 0px 12px 0px rgba(0, 0, 0, 0.05);
}

.client_say_05 .tt-testimonial-info:before {
  content: "\f10d";
  display: block;
  position: absolute;
  top: 20px;
  left: 18px;
  width: 35px;
  height: 26px;
  font-family: FontAwesome;
  font-size: 35px;
  color: #f65245;
}

.client_say_05 .tt-testimonial-user {
  padding-left: 0;
  padding-top: 0;
  display: inline-block;
  vertical-align: middle;
}

.client_say_05 .tt-testimonial-img {
  padding-left: 0;
  padding-top: 0;
  display: inline-block;
  width: 80px;
  vertical-align: middle;
}

/* */
.client_say_05 .tt-block {
  position: relative;
}

.client_say_05 .tt-testimonial .simple-text p {
  color: #b0b0b9;
}

/*  homepage 5 client section changes */
.client_say_05 .image {
  text-align: center;
}

.client_say_05 .image img {
  margin: 0 auto;
  margin-bottom: -40px;
}

.client_say_05 .tt-testimonial-info:after {
  display: none;
}

.client_say_05 .tt-testimonial-info:before {
  display: none;
}

.client_say_05 .tt-testimonial-info {
  padding: 30px;
  text-align: center;
  padding-top: 50px;
  z-index: -1;
}

.client_say_05 .tt-testimonial-user {
  margin-top: 15px;
}

.client_say_05 .icon {
  color: #f65245;
  font-size: 40px;
}

.what_clientsay_01 {
  background: #fff;
}

.what_clientsay_01:before {
  display: none;
}

.what_clientsay_01 .tt-testimonial .simple-text p {
  color: #898989;
  font-size: 16px;
}

.what_clientsay_01 .tt-testimonial-name {
  color: #f65245;
}

.what_clientsay_01 .tt-testimonial-position {
  color: #898989;
  font-size: 13px;
}

.service_details .blogAside .categoryList li a i {
  font-size: 16px;
  margin-top: 0px;
  float: right;
  font-weight: 700;
}

.service_details .categoryList li a {
  border: 1px solid #ddd;
  background: none;
  padding: 17px 18px;
  font-size: 17px;
  font-weight: 500;
}

.service_details .categoryList li.activeCat a, .service_details .categoryList li a:hover {
  color: #f65245;
}

.opening-hours ul li {
  border-bottom: 1px solid #eeeeee;
  padding: 10px 0;
  margin-bottom: 0 !important;
  list-style: none;
  color: #898989;
  font-size: 15px;
  font-family: 'Poppins', sans-serif;
}

.opening-hours ul li:last-child {
  border-bottom: 0;
}

.opening-hours ul {
  padding-left: 0;
  margin-bottom: 0;
}

.widget-title {
  color: #053357;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 20px;
  margin-top: 0;
  margin-bottom: 15px;
}

.widget-title span {
  color: #f65245;
}

.opening_hours {
  margin-bottom: 30px;
}

.service_details .listing {
  margin-top: 50px;
}

.service_details .listing ul {
  margin-bottom: 0;
}

.mainServicesContent .section_2 ul {
  margin-bottom: 0;
  padding-top:10px;
}

/* footer */
.tt-footer .recentNewsBlock a {
  color: #d5d5d5;
  font-weight: 600;
}

.tt-footer .recentNewsBlock a:hover {
  color: #f2c21b;
}

.tt-footer .recentNewsBlock span {
  color: #898989;
}

.tt-footer .recentNewsBlock.last .recentNews {
  border-bottom: 0;
}
.footerSocial
{
    font-size: 17px;
    font-weight: 500;
    font-style: italic;
    color: #d5d5d5;
    font-family: 'Open Sans', sans-serif;
}
/* home page 1 slider */
.what_clientsay_01 .swiper-pagination-white .swiper-pagination-bullet {
  background: transparent;
  border: 1px solid #333;
}

.what_clientsay_01 .swiper-pagination-white .swiper-pagination-bullet .swiper-pagination-bullet-active {}

.what_clientsay_01 .swiper-pagination-white .swiper-pagination-bullet-active {
  background: #f65245;
}

/* map css */
.google-maps {
  position: relative;
  padding-bottom: 28%;
  height: 0;
  overflow: hidden;
}

.google-maps iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100% !important;
  height: 100% !important;
  border: 0;
}

/* footer */
.tt-footer .fa-long-arrow-right {
  font-size: 16px;
  color: #d5d5d5;
  padding-right: 8px;
}

.tt-footer {
  background: url(../images/footer_bg.png) no-repeat;
  background-size: cover;
  position: relative;
}

.tt-footer:before {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  top: 0;
  
  opacity: 0.80;
  content: '';
}

.tt-footer .address {
  padding-left: 0;
}

.tt-footer .address li, .tt-footer .address li a {
  list-style: none;
  font-size: 15px;
  line-height: 30px;
  color: #d5d5d5;
  padding-left: 0;
  letter-spacing: 0.20px;
  font-family: 'Poppins', sans-serif;
}

.tt-footer .address li i {
  padding-right: 8px;
}

/* service page changes */
.section_2 .image.image_011 {
  float: none;
  margin-bottom: 20px;
}

.faq_form .c-btn {
  text-align: center;
}

/* Company hostory page  css */
.company_hostory {
  background: #f1f1f1
}

.company_hostory .simple-text {
  width: 580px;
  margin: 0 auto;
  text-align: center;
}

.company_hostory .year {
  padding: 6px 20px;
  display: inline-block;
  color: #fff;
  font-size: 18px;
  position: absolute;
  top: -17px;
  z-index: 9;
  left: 0;
  margin: 0 auto;
  right: 0;
  width: 100px;
  text-align: center;
  background: #f65245;
}

.company_hostory .company_detail .simple-text {
  width: 100%;
  text-align: left;
}

.company_hostory .company_detail .col-md-4 {
  margin-top: 70px;
}

.company_hostory .company_detail .content {
  background: #fff;
  padding: 30px;
}

.company_hostory .tm-ourhistory-row {
  display: -webkit-box;
  display: flex;
  box-sizing: border-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex: 0 1 auto;
  -webkit-box-flex: 0;
  flex: 0 1 auto;
  -ms-flex-direction: row;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  flex-direction: row;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-left: -1.5rem;
  margin-right: -1.5rem;
}

.tm-ourhistory .tm-ourhistory-right {
  padding-bottom: 30px;
  padding-left: 50px;
}

.tm-ourhistory .tm-ourhistory-right:before {
  content: '';
  position: absolute;
  top: 33px;
  left: -8px;
  z-index: 2;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: 5px solid #053357;
  box-sizing: content-box;
  background: #f65245;
}

.tm-ourhistory .label {
  display: block;
  font-size: 22px;
  font-weight: 600;
  color: #fff;
  margin-top: 25px;
  background: #053357;
  padding: 10px 0;
  width: 130px;
  font-family: 'Poppins', sans-serif;
}

.tm-ourhistory .title {
  display: block;
  font-size: 18px;
  font-weight: 600;
  color: #f65245;
  font-family: 'Poppins', sans-serif;
  margin-bottom: 5px;
}

.tm-ourhistory .tm-ourhistory-right:after {
  content: '';
  position: absolute;
  top: 0;
  left: 0px;
  z-index: 1;
  width: 3px;
  height: 100%;
  background: #ccbcbc;
}

.tm-ourhistory .tm-ourhistory-right.last {
  padding-bottom: 0;
}

/* company overview page css */
.overview img {
  border-radius: 10px;
}

.overview h1 span {
  color: #053357;
  font-weight: 600;
}

.company_stablish {
  background: #fff;
}

.company_stablish h1 {
  font-size: 40px;
  color: #2a2a2a;
  text-transform: initial;
  font-weight: 500;
  font-family: 'Poppins', sans-serif;
  margin-top: 0;
  margin-bottom: 15px;
}

.company_stablish h1 span {
  color: #053357;
  font-weight: 600;
}

.company_stablish ul.listing {
  padding-left: 0;
  margin-top: 15px;
}

.company_stablish ul.listing li {
  padding-left: 0;
  list-style: none;
  line-height: 36px;
  font-size: 15px;
  color: #898989;
  font-family: 'Open Sans', sans-serif;
  font-weight: 400;
  padding-left: 35px;
}

.company_stablish ul.listing li:before {
  content: "\f00c";
  position: absolute;
  font-family: FontAwesome;
  left: 18px;
  color: #f65245;
}

.career_search_form .form-control {
  border: 1px solid #dddddd;
  height: 49px;
  border-radius: 0;
  padding: 6px 15px;
}

.career_search_form input {
  color: #898989;
  font-family: 'Poppins', sans-serif;
  font-size: 15px;
  font-weight: 400;
  box-shadow: none;
  outline: none;
}

.career_search_form input:focus {
  box-shadow: none;
}

.career_search_form .sim-button {
  width: 100%;
  height: 49px;
  line-height: 49px;
}

.new_openings h4 {
  font-family: 'Poppins', sans-serif;
  color: #f65245;
  font-weight: 600;
  font-size: 20px;
  margin-top: 0;
  margin-bottom: 10px;
}

.new_openings h5 {
  font-family: 'Poppins', sans-serif;
  color: #898989;
  font-weight: 400;
  font-size: 16px;
  margin-top: 15px;
}

.new_openings .sim-button {
  margin-top: 20px;
  width: 250px;
}

.new_openings ul.listing li {
  padding-left: 0;
  list-style: none;
  line-height: 30px;
  font-size: 15px;
  color: #898989;
  font-family: 'Open Sans', sans-serif;
  font-weight: 400;
  padding-left: 35px;
}

.new_openings ul.listing {
  padding-left: 0;
}

.new_openings ul.listing li:before {
  content: "\f00c";
  position: absolute;
  font-family: FontAwesome;
  left: 35px;
  color: #f65245;
}

.new_openings .responsibilies {
  margin-top: 20px;
}

.apply_now_form input {
  color: #898989;
  font-family: 'Poppins', sans-serif;
  font-size: 15px;
  font-weight: 400;
  box-shadow: none;
  outline: none;
}

.apply_now_form .form-control {
  border: 1px solid #dddddd;
  height: 49px;
  border-radius: 0;
  padding: 12px 15px;
}

.apply_now_form {
  background: #f1f1f1;
}
.apply_now_form .sim-button {
  margin: 0 auto;
  float: none;
  margin-top: 20px;
}

.apply_now_form .button {
  text-align: center;
}

.apply_now_form textarea.form-control {
  height: 100px;
  padding-top: 15px;
  color: #898989;
  font-family: 'Poppins', sans-serif;
}

.tz_icon_search {
  display: block;
}

.tz_icon_close {
  display: none;
}

.hmslider1 .slide1 {
  background-image: url(../images/home1/slide1.jpg);
}

.hmslider1 .slide2 {
  background-image: url(../images/home1/slide2.jpg);
}

.hmslider1 .slide3 {
  background-image: url(../images/home1/slide3.jpg);
}

.hm2slider .slide1 {
  background-image: url(../images/home2/slide1.jpg);
}

.hm2slider .slide2 {
  background-image: url(../images/home2/slide2.jpg);
}

.hm2slider .slide3 {
  background-image: url(../images/home2/slide3.jpg);
}

.hmslider3 .slide1 {
  background-image: url(../images/home3/slider-4.jpg);
}

.hmslider3 .slide2 {
  background-image: url(../images/home3/slide2.jpg);
}

.hmslider3 .slide3 {
  background-image: url(../images/home3/slide3.jpg);
}

.hm4slider .slide1 {
  background-image: url(../images/slide003.jpg);
}

.hm4slider .slide2 {
  background-image: url(../images/slide001.jpg);
}

.hm4slider .slide3 {
  background-image: url(../images/slide002.jpg);
}

.hmslider5 .slide1 {
  background-image: url(../images/home5/slide1.jpg);
}

.hmslider5 .slide2 {
  background-image: url(../images/home5/slide2.jpg);
}

.hmslider5 .slide3 {
  background-image: url(../images/home5/slide3.jpg);
}

.tt-copy-right a {
  color: #485866;
  text-decoration: none;
}

/* Custom CSS */
.tt-mslide-title span.tt-mslide-small-title {
  text-transform: uppercase;
  font-size: 16px;
  color: #053357;
  line-height: 16px;
  text-align: left;
  display: block;
}

.strip {
  background: #053357;
  padding: 30px 0;
}

.strip h3 {
  font-family: 'Poppins', sans-serif;
  font-size: 26px;
  font-weight: 500;
  color: #ffffff;
  margin: 0;
  letter-spacing: 0.10px;
  line-height: 36px;
}

.strip h3 span {
  color: #f65245;
}

.strip a {
  margin-top: 15px;
  display: inline-block;
}

.whitebtn.button6::before {
  background-color: #f65245;
}

/* Home Page 1 Single Servies */
.our_services {
  background-color: #f1f5f9;
  background-image: url("../images/services-bg.png");
  background-size: cover;
  padding: 80px 0 60px 0;
}

.single_service_inner {
  position: relative;
  width: 100%;
  height: 100%;
  transition: transform 0.8s;
  transform-style: preserve-3d;
}

.single_services {
  background-color: transparent;
  width: 100%;
  height: 295px;
  perspective: 1000px;
}
.single_services a{
color:#f65245;
}

.single_services h3 {
  font-size: 24px;
  color: #053357;
  line-height: 24px;
}

.single_services p {
    font-size: 15px;
    color: #5c5d5e;
    line-height: 25px;
}

.single_services span {
  font-size: 15px;
  color: #f65245;
  line-height: 20px;
}

.single_services img {
  width: 60px;
}

/* Position the front and back side */
.single_ser_front, .single_ser_back {
    position: absolute;
    width: 100%;
    backface-visibility: hidden;
    padding: 20px 25px;
}

.single_ser_front {
  background-color: transparent;
}

.single_ser_back {
  background-color: #f65245;
  padding: 20px;
}

.single_ser_back h3 {
	font-size: 30px;
    line-height: 36px;
    font-family: 'Poppins', sans-serif;
    color: #fff;
    padding-bottom: 20px;
}

.single_ser_front h3 {
   margin: 20px 0;
}

.single_ser_front p {
  margin-bottom: 20px;
}

.single_ser_back p {
    font-size: 15px;
    line-height: 25px;
    font-family: 'Open Sans', sans-serif;
    color: #fff;
    margin: 0;
}

.single_ser_back a {
  display: block;
  text-align: right;
}

.single_ser_back a i {
  color: #fff;
  font-size: 20px;
  text-align: right;
}

.client_say_04.client_say_custom {
  background-color: #fff;
  background-image: none;
}

.client_say_04.client_say_custom::before {
  display: none;
}

.testimonial_details {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.sigle-test-details {
  width: 50%;
  text-align: center;
}

.sigle-test-details h3 {
  font-size: 20px;
  color: #053357;
  font-weight: 400;
  margin-top: 0;
  font-family: 'Poppins', sans-serif;
}

.sigle-test-details h2 {
  font-size: 36px;
  color: #f65245;
  font-weight: 600;
  margin-top: 15px;
  font-family: 'Poppins', sans-serif;
}

.sigle-test-details:nth-child(1) {
  border-bottom: 1px solid #e5e4e4;
  border-right: 1px solid #e5e4e4;
  padding-bottom: 30px;
}

.sigle-test-details:nth-child(2) {
  border-bottom: 1px solid #e5e4e4;
  padding-bottom: 30px;
}

.sigle-test-details:nth-child(3) {
  border-right: 1px solid #e5e4e4;
  padding-top: 30px;
}

.sigle-test-details:nth-child(4) {
  padding-top: 30px;
}

.client_say_04.client_say_custom .tt-title {
  color: #053357;
}

.client_say_04.client_say_custom .content p {
  color: #053357;
  font-weight: 400;
  width: 100%;
}

.client_say_04.client_say_custom .content h5 {
  color: #f65245;
  font-weight: 600;
}

.client_say_04.client_say_custom .owl-theme .owl-dots .owl-dot span {
  background: #053357;
}

.client_say_04.client_say_custom .owl-theme .owl-dots .owl-dot.active span {
  background: #f65245;
}

/* Footer Custom CSS */
.tt-footer a.read-more {
  color: #f65245;
}

.tt-footer .tt-footer-inner .simple-text a.read-more {
  font-weight: 400;
}

.f_latest_news {
  background-color: transparent;
}

.f_single_news {
  margin-bottom: 20px;
  display: flex;
  justify-content: space-between;
}

.f_single_news p {
  color: #d5d5d5;
  font-size: 15px;
  line-height: 20px;
  margin-left: 10px;
  font-family: 'Open Sans', sans-serif;
}

.footerSubscribe {
  margin-bottom: 25px;
}

.footerSubscribe label {
  font-size: 17px;
  font-weight: 500;
  font-style: italic;
  color: #d5d5d5;
  margin-bottom: 10px;
  font-family: 'Open Sans', sans-serif;
}

.footer_sub {
  display: flex;
  align-items: center;
}

.footer_sub input {
  border: none;
  background-color: #fff;
  color: #222;
  font-size: 14px;
  padding: 12px 15px;
  border-radius: 4px 0 0 4px;
  width: 300px;
  height: 44px;
}

.footer_sub button {
  background-color: #f65245;
  color: #fff;
  padding: 8px 15px;
  border: none;
  font-size: 20px;
  border-radius: 0 4px 4px 0;
  margin-left: -4px;
  height: 44px;
}

@media all and (max-width: 991px) {
  .testimonial_details {
    margin-bottom: 50px;
  }

  .sigle-test-details h3 {
    font-size: 16px;
  }

  .sigle-test-details h2 {
    font-size: 22px;
    margin-top: 5px;
  }
}

/* Home Page 2 Custom CSS */
.our_services_2.services_02 {
  background-color: #fff;
  background-image: url("../images/service-bg-2.png");
  background-size: cover;
  padding: 70px 0 0 0;
}

.our_services_2.services_02 .content_01 {
  margin-bottom: 50px;
}

.single_service_2 {
  background-color: #fff;
  padding: 30px 20px;
  height: 290px;
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
  margin-bottom: -70px;
}

.single_service_2:hover {
-moz-box-shadow: 0 0 10px #ccc;
		-webkit-box-shadow: 0 0 30px #ccc;
		box-shadow: 0 0 30px #ccc;
}

.single_service_2 img {
  display: block;
  margin: 0 auto 38px auto;
}

.single_service_2 h3 {
  margin-top: 20px;
  font-size: 20px;
  color: #053357;
  font-weight: 400;
  transition: color 0.3s ease-out 0s;
}

.single_service_2:hover.single_service_2 h3 {
  color: #f65245;
}

.single_service_2:hover.single_service_2 a {
  color: #f65245;
}

.single_service_2 p {
  font-size: 15px;
  color: #595959;
  font-family: 'Open Sans', sans-serif;
}

.single_service_2 a {
  text-transform: uppercase;
  font-size: 14px;
  color: #053357;
  margin-top: 10px;
  transition: color 0.3s ease-out 0s;
  font-family: 'Open Sans', sans-serif;
  font-weight: 600;
}

.padding-extra {
  padding-top: 150px;
}

.strip.bg-red {
  background-color: #f65245;
  margin-top: -2px
}

.strip.bg-red .whitebtn.button6::before {
  background-color: #053357;
}

.request_free_02.bg-white {
  background-color: #fff;
}

@media all and (max-width: 991px) {
  .single_service_2 {
    margin-bottom: 30px;
  }

  .left-image {
    display: none;
  }
}

/* Home page 4 */
.client_say_06 {
  background-image: url("../images/testimonial/test6.jpg"); 
  background-size: cover;
}

.owl-carousel .owl-item .client_say_06_img img {
  width: 200px;
  display: block;
}

.test-flex-content {
  display: flex;
  padding: 0 100px;
}

.client_say_06_img {
  padding-right: 40px;
  margin-right: 40px;
  position: relative;
}

.client_say_06_img:before {
  width: 1px;
  height: 100px;
  background-color: #778590;
  content: '';
  position: absolute;
  right: 0;
  top: 0;
}

.client_say_06_content p {
  color: #fff;
  font-size: 18px;
  line-height: 28px;
  margin: 0;
  font-family: 'Open Sans', sans-serif;
}

.test-footer {
  display: block;
  width: 100%;
  margin-top: 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.test-footer i {
  font-size: 32px;
  color: #fff;
}

.test-footer h5 {
  font-size: 20px;
  color: #f65245;
  font-weight: 400;
  font-family: 'Poppins', sans-serif;
  font-style: italic;
}

.client_say_06 .tt-title {
  margin-left: 50px;
  margin-bottom: 30px;
  font-family: 'Poppins', sans-serif;
}

.client_say_06 .tt-title span {
  color: #fff;
}

.client_say_06 .owl-nav {
  display: flex;
  position: absolute;
  top: -60px;
  right: 100px;
}

.owl-prev,
.owl-next {
  border: 1px solid #778590;
  font-size: 22px;
  padding-top: 5px;
  color: #778590;
  background-color: transparent;
  height: 40px;
  width: 40px;
  text-align: center;
  line-height: 25px;
  margin-left: 5px;
}

@media all and (max-width: 991px) {
  .test-flex-content {
    padding: 0px;
    flex-wrap: wrap;
  }

  .client_say_06_img {
    width: 100%;
    margin: 0;
    padding: 0;
  }

  .owl-carousel .owl-item .client_say_06_img img {
    width: 100px;
    margin: 20px auto;
  }

  .client_say_06_img::before {
    display: none;
  }

  .client_say_06_content {
    width: 100%;
    padding: 20px;
  }

  .client_say_06 .tt-title {
    margin-left: 0;
    margin-bottom: 30px;
    text-align: left;
    font-size: 22px;
  }

  .client_say_06 .owl-nav {
    right: 10px;
  }
}

/* client_carousel_bg */
.client_carousel_bg {
  background-image: url("../images/testimonial-bg.png");
  background-size: cover;
  background-repeat: no-repeat;
  padding: 100px 0;
  background-position: center center;
}

.client_carousel_bg .tt-title {
  margin-bottom: 80px;
}

.location_map iframe {
  width: 100%;
  height: 540px;
  margin-bottom: -4px;
}

@media all and (max-width: 991px) {
  .client_carousel_bg {
    padding: 50px 0;
  }

  .location_map iframe {
    height: 340px;
  }
}

/* Home page 3 */
.home3 .portfolio .portfolio-items .bugets1 h5 {
  color: #f65245;
}

.home3 .portfolio .portfolio-items .bugets1 p {
  color: #fff;
}

.home3 .left_content {
  width: 49%;
  float: left;
  z-index: 100;
  position: relative;
  display: flex;
  flex-wrap: wrap;
  padding-top: 120px;
}

.home3 .left_content .single_test_fact {
  box-shadow: 0 0 3px rgba(0, 0, 0, 0.3);
  padding: 20px 10px;
  text-align: center;
  background-color: #fff;
  width: 40%;
  margin-bottom: 20px;
  margin-right: 20px;
}

.home3 .left_content .single_test_fact h3 {
  color: #053357;
  font-size: 18px;
  line-height: 22px;
}

.home3 .left_content .single_test_fact h2 {
  font-size: 32px;
  color: #f65345;
  margin: 0;
  font-weight: 700;
}

.home3 .left_content .single_test_fact:nth-child(1) {
  margin-left: 20px;
}

.left_content .single_test_fact:nth-child(2) {
  margin-top: 20px;
}
.request_free_h3.request_free .right_content .tt-title {
  color: #f65345;
}

.request_free_h3 .request_contact .form-group textarea {
  background: #fff;
}

.request_free_h3 .request_contact .form-group input {
  background: #fff;
}

@media all and (max-width: 991px) {
  .left_content {
    display: none;
  }
}

.home5 .slider_content {
  text-align: right;
}

.home5 .tt-mslide-title h3,
.home5 .tt-mslide-title p {
  text-align: right;
}

.home5 .slider_content .sim-button {
  float: right;
  margin-left: 10px;
}

.welcome_sec_h5 {
  margin-top: -150px;
  position: relative;
  z-index: 100;
}

.welcome_sec_h5 .content {
  background-color: #053357;
  padding: 70px 160px 140px 60px;
  width: 130%;
}

.welcome_sec_h5 .content h3 {
  color: #fff;
  font-size: 32px;
  font-weight: 400;
  line-height: 44px;
  font-family: 'Poppins', sans-serif;
}

.welcome_sec_h5 .content h3 span {
  color: #f65245;
}

.content .line-bar {
  width: 32%;
  height: 4px;
  background-color: #f65245;
  display: block;
  margin-bottom: 50px;
}

.welcome_sec_h5 .content p {
  color: #fff;
  font-size: 15px;
  line-height: 24px;
  font-family: 'Open Sans', sans-serif;
}

.welcome_sec_h5 .image {
  margin-top: 60px;
}

.home5 .service_sec_05 {
  background-color: #ffffff;
}

.home5 .single_service {
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
  margin-bottom: 20px;
}

.home5 .single_service .content h4 {
  color: #f65245;
  font-weight: 400;
}

.home5 .single_service .content .readmore {
  color: #053357;
  font-weight: 400;
}

.home5 .single_service .content {
  position: relative;
}

.home5 .single_service .content:before {
  content: '';
  display: block;
  width: 100%;
  height: 100px;
  top: -55%;
  left: 0;
  position: absolute;
  /* Permalink - use to edit and share this gradient: https://colorzilla.com/gradient-editor/#ffffff+0,ffffff+100&0+0,1+100 */
  background: -moz-linear-gradient(top, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 1) 100%);
  /* FF3.6-15 */
  background: -webkit-linear-gradient(top, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 1) 100%);
  /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 1) 100%);
  /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#00ffffff', endColorstr='#ffffff', GradientType=0);
  /* IE6-9 */
}

.client_carousel_5 .tt-title {
  margin-bottom: 50px;
}

.home5 .gal-item {
  margin-bottom: 30px
}

.home5 .gal-item.m-m {
  margin-bottom: 32px
}

.home5 .tour-layer {
  background: rgba(5, 51, 87, 0.6);
}

.home5 .our_projects .project_slider h5 {
  color: #f65245;
}

.home5 .our_projects .project_slider p {
  color: #fff;
}

@media all and (max-width: 991px) {
  .welcome_sec_h5 {
    margin-top: 0px;
  }

  .welcome_sec_h5 .content {
    padding: 20px 20px 100px 20px;
    width: 100%;
  }

  .welcome_sec_h5 .simple-text p {
    text-align: left;
  }

  .home5 .gal-item .black-hover {
    height: 300px;
  }

  .home5 .gal-item img {
    height: 100%;
  }

  .single_what_c_h {
    width: 100%;
  }
}

.home5strip
{
	background:#053357;
}

/*---------------*/
/***** Hover Effects Grid *****/
/*---------------*/

.grid {
	position: relative;
	margin: 0 auto;
	max-width: 1000px;
	list-style: none;
	text-align: center;
}

/* Common style */
.grid figure {
	position: relative;
	float: left;
	overflow: hidden;
	background: #053357;
	text-align: center;
	cursor: pointer;
}

.grid figure img {
	position: relative;
	display: block;
	min-height: 100%;
	max-width: 100%;
	opacity: 0.8;
}

.grid figure figcaption {
	padding: 2em;
	color: #fff;
	text-transform: uppercase;
	font-size: 1.25em;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	padding-top: 25%;
}

.grid .bigproject figcaption{
	padding-top: 10%;
}

.grid figure figcaption::before,
.grid figure figcaption::after {
	pointer-events: none;
}

.grid figure figcaption,
.grid figure figcaption > a {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}
.grid figure figcaption > a {
	z-index: 1000;
	text-indent: 200%;
	white-space: nowrap;
	font-size: 0;
	opacity: 0;
}

.grid figure h2 {
	word-spacing: -0.15em;
	font-weight: 300;
}

.grid figure h2 span {
	font-weight: 800;
}

.grid figure h2,
.grid figure p {
	margin: 0;
}

.grid figure p {
	letter-spacing: 1px;
	font-size: 68.5%;
	font-family:'Poppins', sans-serif;
}

.text-left
{
	text-align:left;
}

/*---------------*/
/***** Ming *****/
/*---------------*/
figure.effect-ming {
	background: #053357;
}

figure.effect-ming img {
	opacity: 0.9;
	-webkit-transition: opacity 0.35s;
	transition: opacity 0.35s;
}

figure.effect-ming figcaption::before {
	position: absolute;
	top: 30px;
	right: 30px;
	bottom: 30px;
	left: 30px;
	border: 2px solid #fff;
	box-shadow: 0 0 0 30px rgba(255,255,255,0.2);
	content: '';
	opacity: 0;
	-webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
	transition: opacity 0.35s, transform 0.35s;
	-webkit-transform: scale3d(1.4,1.4,1);
	transform: scale3d(1.4,1.4,1);
}

figure.effect-ming h2 {
	margin: 20% 0 10px 0;
	-webkit-transition: -webkit-transform 0.35s;
	transition: transform 0.35s;
}

figure.effect-ming p,
figure.effect-ming a,
figure.effect-ming div
 {
	padding: 10px;
	opacity: 0;
	-webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
	transition: opacity 0.35s, transform 0.35s;
	-webkit-transform: scale(1.5);
	transform: scale(1.5);
}

figure.effect-ming .link a
{
	color:#f65345;
    text-transform: uppercase;
	padding:0px;
	
	font-size: 14px;
    color: #f65245;
    font-weight: 600;
    font-family: 'Poppins', sans-serif;	
}


figure.effect-ming:hover h2 {
	-webkit-transform: scale(0.9);
	transform: scale(0.9);
}

figure.effect-ming:hover figcaption::before,
figure.effect-ming:hover div,
figure.effect-ming:hover a,
figure.effect-ming:hover p {
	opacity: 1;
	-webkit-transform: scale3d(1,1,1);
	transform: scale3d(1,1,1);
	transition-delay: 0.3s;
}

figure.effect-ming:hover figcaption {
	background-color: rgba(58,52,42,0);
}

figure.effect-ming:hover img {
	opacity: 0.4;
}

/*-----------------*/
/***** Apollo *****/
/*-----------------*/
figure.effect-apollo {
	background: #3498db;
}
figure.effect-apollo img {
	opacity: 0.95;
	-webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
	transition: opacity 0.35s, transform 0.35s;
	-webkit-transform: scale3d(1.05,1.05,1);
	transform: scale3d(1.05,1.05,1);
}

figure.effect-apollo figcaption::before {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(255,255,255,0.5);
	content: '';
	-webkit-transition: -webkit-transform 0.6s;
	transition: transform 0.6s;
	-webkit-transform: scale3d(1.9,1.4,1) rotate3d(0,0,1,45deg) translate3d(0,-100%,0);
	transform: scale3d(1.9,1.4,1) rotate3d(0,0,1,45deg) translate3d(0,-100%,0);
}

figure.effect-apollo p {
	position: absolute;
	right: 0;
	bottom: 0;
	margin: 3em;
	padding: 0 1em;
	max-width: 150px;
	border-right: 4px solid #fff;
	text-align: right;
	opacity: 0;
	-webkit-transition: opacity 0.35s;
	transition: opacity 0.35s;
}

figure.effect-apollo h2 {
	text-align: left;
}

figure.effect-apollo:hover img {
	opacity: 0.6;
	-webkit-transform: scale3d(1,1,1);
	transform: scale3d(1,1,1);
}

figure.effect-apollo:hover figcaption::before {
	-webkit-transform: scale3d(1.9,1.4,1) rotate3d(0,0,1,45deg) translate3d(0,100%,0);
	transform: scale3d(1.9,1.4,1) rotate3d(0,0,1,45deg) translate3d(0,100%,0);
}

figure.effect-apollo:hover p {
	opacity: 1;
	-webkit-transition-delay: 0.1s;
	transition-delay: 0.1s;
}
.whychoose-box
{
    border: 1px solid #b6bbbf;
	padding: 40px;
    margin: 20px 10px;
}
.whychoose-img
{
	float:left;
	height:120px;
	width:70px;
}
.whychoose-section h3
{
    margin-bottom: 10px;
}

/* === Correção do tamanho da logo === */
.logo img {
    height: 80px;
    width: auto;
    max-height: 80px;
    object-fit: contain;
}

/* Garantir que a logo apareça mesmo no header2 */
.header2 .tt-header .logo {
    display: block !important;
}

/* Ajuste de container */
.header2 .tt-header .top-inner {
    width: auto !important;
}


/* =============================================================
   AJUSTES ADICIONAIS - LOGO RESPONSIVA E HEADER
   ============================================================= */

/* Logo Desktop e Mobile */
.logo-desktop {
    display: block;
    max-height: 75px;
    width: auto;
}

.logo-mobile {
    display: none;
    max-height: 50px;
    width: auto;
}

/* Logo no header fixo (rolagem) */
.tt-header.stick .logo img {
  max-height: 75px !important;
}

/* Responsividade para Mobile */
@media (max-width: 991px) {
    .logo-desktop {
        display: none;
    }
    .logo-mobile {
        display: block;
    }
}

/* Ajuste extra para telas muito pequenas */
@media (max-width: 480px) {
    .logo-mobile {
        max-height: 45px;
    }
}


  .logo img {
    max-height: 60px;
    height: auto;
    width: auto;
  }

  /* Esconde logos extras, deixa uma apenas */
  .logo img:nth-of-type(2) {
    display: none !important;
  }

  @media (max-width: 767px) {
  .tt-header .logo img {
    max-height: 75px !important;
  }
}

.col-md-6 video {
    /* Garante que o vídeo se comporte corretamente com as dimensões */
    display: block; 
    
    /* Propriedades de box-shadow para criar o efeito de borda/moldura */
    box-shadow: 15px 15px 0px 0px #FF0000; /* Horizontal offset, Vertical offset, Blur, Spread, Color */
    
    /* Opcional: Adicionar um pouco de espaçamento interno se a borda for muito colada */
    /* padding: 10px; */ 

    /* Garante que a borda não seja cortada se o vídeo for responsivo e precisar de margem */
    margin-bottom: 15px; /* Ajuste conforme o deslocamento vertical do box-shadow */
    margin-right: 15px; /* Ajuste conforme o deslocamento horizontal do box-shadow */
}

.main-content-section {
    width: 100%;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    margin-top: 50px; /* Adicione esta linha para uma margem superior de 50 pixels */
}

.espaco-entre-linhas {
  display: inline-block;
  margin-top: 25px; /* ajuste o valor como quiser */
}

.texto-vermelho {
  color: #f65245;
}

.tt-mslide-title {
  font-size: 36px; /* Exemplo menor que os 60px padrão */
}

.tt-mslide-title .espaco-entre-linhas {
  font-size: 28px; /* Ou menor, como 24px */
}

body.header-stuck {
  padding-top: 130px; /* ou ajuste conforme a altura real do header */
}


.tt-header.stick + #content-wrapper {
  margin-top: 180px; /* ajuste conforme a altura real do header */
}


body.header-stuck {
  padding-top: 130px; /* ajuste conforme altura real do seu header */
}

.tt-header.stick {
  background-color: #ffffff !important; /* ou #032f54, como na imagem original */
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1); /* adiciona um leve sombreamento */
  z-index: 999 !important;
}

.tt-header.stick .main-nav > ul > li > a {
  color: #000 !important; /* ou branco se fundo for azul escuro */
}

/* --- FIX: Prevent content from hiding under sticky header --- */
/* This CSS adds top margin to the content wrapper (#content-wrapper)
   when the header (.tt-header) has the 'stick' class added by JavaScript. */

/* For desktop screens (>= 992px) */
@media (min-width: 992px) {
  .tt-header.stick + #content-wrapper {
    margin-top: 100px; /* ADJUST THIS VALUE based on your sticky header's height on desktop */
  }
}

/* For mobile and tablet screens (< 992px) */
@media (max-width: 991px) {
  .tt-header.stick + #content-wrapper {
    margin-top: 100px; /* ADJUST THIS VALUE based on your sticky header's height on mobile/tablet */
  }
}

/* Ensure the default margin is 0 when not sticky, which is usually the case */
#content-wrapper {
    margin-top: 0;
}
/* --- END FIX --- */

/* Keep your existing custom sticky header styles if you like */
/*
.tt-header.stick {
  background-color: #ffffff !important;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
  z-index: 999 !important;
}

.tt-header.stick .main-nav > ul > li > a {
  color: #000 !important;
}
*/


