/*
-----------------------------------------------------
  Stylesheet Guide
-----------------------------------------------------

  1. Default stylesheets
  2. General classes
  3. Main
    3.1. Offsets
    3.2. Pagination
  4. Basic Elements
    4.1. Typography
    4.3. Buttons
  5. Header

    5.1. Navigation
  6. First Screen
  7. Abot Box
  8. Menu Box
  9. Contacts Us
  10. Animate Style
  11. Spacing

*/
@import "reset.css";
@import "animate.css";
@import "bootstrap.min.css";
@import "../fonts/Evatheme-Icon/css/Evatheme-Icon-Fonts.css";
@import "../fonts/font-awesome-4.6.3/css/font-awesome.min.css";

@import url(https://fonts.googleapis.com/css?family=Lato:400,300,700,100);

/* ------------------------------------------------

    1. Default stylesheets

------------------------------------------------ */

   body {
    font-family: 'Lato', sans-serif;
    color:#fff;
    font-size:16px;
    line-height:26px;
    font-weight: 300;
    background:#000;
   }

   *{
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
   }

   ::selection{
    color: #fff;
    background-color: #0066cc;
   }

   ::-moz-selection{
    color: #fff;
    background-color: #0066cc;
   }

   ::-webkit-scrollbar{
    background: #cdcdcd;
    width: 8px;
   }

   ::-webkit-scrollbar-thumb{background: #333;}


   ::-webkit-input-placeholder{
    color:#999;
    -webkit-transition: text-indent .5s ease, color .5s ease;
        transition: text-indent .5s ease, color .5s ease;
   }

   input::-moz-placeholder{
    color:#999;
    opacity:1;
   }

   textarea::-moz-placeholder{
    color: #999;
    opacity: 1;
   }

   ::ms-input-placeholder{
    color:#999;
   }

   [placeholder]:focus::-webkit-input-placeholder{
    text-indent:10em;
    color:transparent;
   }


/* ------------------------------------------------

    2. General Classes

------------------------------------------------ */

   .align_left, .align_left h2{
    text-align: left;
   }

   .align_right{
    text-align: right;
   }

   .align_center{
    text-align: center;
   }

   .f_left{
    float: left;
   }

   .f_right{
    float: right;
   }

   .wrapper{overflow: hidden;}

   .hide{ display: none;}

   .show{ display: block;}

   .d_ib{display: inline-block;}

   .transparent{ opacity:0; }

   .invisible{
    opacity: 0;
    visibility: hidden;
   }

   .visible{
    opacity:1;
    visibility: visible;
   }

   .p_abs{position: absolute;}

   .p_rel{position: relative;}

   .p_fix{position: fixed;}

   .clear{clear:both;width:100%;line-height:0;font-size:0;}

   .clearfix:after{
    content: "";
    display: block;
    height: 0;
    clear: both;
    visibility: hidden;
   }

   .reg{text-transform:uppercase}

/* ------------------------------------------------

    3. Main

------------------------------------------------ */

  #content{
	  padding:0px 0px 0px 0px;
  }

  /* --------------------------------------------
        3.1. Offsets
  -------------------------------------------- */

    .section{
      -webkit-background-size: cover;
      background-size: cover;
      background-repeat: no-repeat;
      background-position: 50% 0;
    }

    .section:before{
      content: '';
      display: inline-block;
      vertical-align: middle;
      height: 100%;
      width: 0;
      margin-left: -5px;
    }

    .section_inner{
      display: inline-block;
      vertical-align: middle;
      width: 100%;
      padding: 50px 0;
    }
    footer .section_inner{
      vertical-align: bottom;
      margin-bottom: 50px;
    }
  /* --------------------------------------------
        3.2. Pagination
  -------------------------------------------- */

    .onepage-pagination{
      -webkit-transform: translate(0, -50%);
      -ms-transform: translate(0, -50%);
      -o-transform: translate(0, -50%);
      transform: translate(0, -50%);
      right: 37px;
    }

    .onepage-pagination li{
      padding: 10px 0;
    }

    .onepage-pagination li a{
    padding: 10px;
    width: 15px;
    height: 15px;
    border-radius: 50%;
    border: 2px solid rgba(111, 108, 108, 0.05);
    background-color: rgba(255, 255, 255, 0.44);
    margin: 5px;
    }
    .onepage-pagination li a:hover{
      border-color: #06c;
      background-color: #06c;      
    }
    .onepage-pagination li a.active{
      border-color: #06c;
      background: none;
    }

    .onepage-pagination li a:before{
      display: none;
    }

/* ------------------------------------------------

    4. Basic Elements

------------------------------------------------ */

  /* --------------------------------------------
      4.1. Typography
  -------------------------------------------- */

    h1,h2,h3,h4,h5,h6{
      font-family: 'Lato', sans-serif;
      font-weight:300;
      line-height: 1.23em;
      margin: 0;
      margin-bottom: 17px;
    }

    h1{
      font-size: 50px;
      line-height: 100px;
      margin-bottom: 40px;
    }

    h2{
      font-size: 50px;
      text-align: center;
      margin: 37px 0px 40px;
    }

    h2 strong{
      font-weight: 41;
    }

    h2 .subtitle{
      display: block;
      font-size: 40px;
      line-height: 1;
      margin-bottom: -5px;
    }

    h3{font-size: 22px;}

    h4{
      font-size: 18px;
    }
    h5{font-size: 16px;}

    h6{
      font-size: 20px;
      line-height: 18px;
      margin-bottom: 15px;
    }

    .subtitle{
      font-size: 24px;
      line-height: 34px;
    }

    .title_icon{
      font-size: 35px;
      color: #ccc;
      margin-bottom: 30px;
    }

    p:not(:last-child){margin-bottom: 20px;}

    mark{background-color: #20cfef;padding: 0 2px;color: #fff;}
    mark.red{background-color: #ee352f;}

    a{
      color: #0066cc;
      text-decoration: none;
      -webkit-transition: all 0.5s;
      -o-transition: all 0.5s;
      transition: all 0.5s;
    }
    a:hover{
      color: #fff;
      text-decoration: none;
      -webkit-transition: all 0.3s;
      -o-transition: all 0.3s;
      transition: all 0.3s;
    }
    a:focus,
    a:visited{
      outline: none;
      text-decoration: none;
    }

    img{
      max-width: 100%;
    }

  /* --------------------------------------------
      4.3. Buttons
  -------------------------------------------- */

      button{
        -webkit-transition: all 0.5s;
        -o-transition: all 0.5s;
        transition: all 0.5s;
      }

      button:focus{
        outline: none;
      }

      button:hover{
        -webkit-transition: all 0.3s;
        -o-transition: all 0.3s;
        transition: all 0.3s;
      }

      .btn{
        display: inline-block;
        outline: none;
        background: none;
        border: none;
        color: #fff;
        font-size: 24px;
        line-height: 30px;
        position: relative;
        padding-right: 35px;
      }

      .btn:before{
        content: "\f105";
        display: block;
        position: absolute;
        text-align: center;
        width: 26px;
        height: 26px;
        right: 0;
        top: 50%;
        margin-top: -9px;
        border: 2px solid #fff;
        border-radius: 50%;
        font: normal normal normal 14px/22px FontAwesome;
        -webkit-transition: all 0.5s;
        -o-transition: all 0.5s;
        transition: all 0.5s;
      }

      .btn:after{
        content: '';
        display: block;
        position: absolute;
        bottom: 0;
        left: 0;
        right: 100%;
        height: 1px;
        background-color: #fff;
        -webkit-transition: all 0.5s;
        -o-transition: all 0.5s;
        transition: all 0.5s;
      }

      .btn:hover{
        color: #fff;
      }

      .btn:hover:before{
        background-color: #fff;
        color: #06c;
        -webkit-transition: all 0.3s;
        -o-transition: all 0.3s;
        transition: all 0.3s;
      }

      .btn:hover:after{
        right: 35px;
        -webkit-transition: all 0.3s;
        -o-transition: all 0.3s;
        transition: all 0.3s;
      }

      .btn_type1.big{
    min-width: 80px !important;
    font-size: 18px;
    padding: 10px 28px 12px;
    margin-right: 10px;
      }

      .btn_type1.blue{
        background: #ffc900;
      }

      .btn_type1{
        outline: none;
        background: none;
        border: none;
        color: #fff;
        position: relative;
        background: rgba(0,0,0,0.85);
        display: inline-block;
        font-family: Lato;
        font-size: 13px;
        font-weight: 300;
        border-radius: 30px;
        line-height: 16px;
        min-width: 130px;
        padding: 7px 19px 9px;
        text-align: center;
      }

      .btn_type1 span{
        display: inline-block;
        position: relative;
        -webkit-transition: all 0.5s;
        -o-transition: all 0.5s;
        transition: all 0.5s;
      }

      .btn_type1 span:after{
        content: "\f105";
        display: block;
        position: absolute;
        top: 50%;
        right: 0;
        margin-top: -10px;
        font: normal normal normal 14px/20px FontAwesome;
        opacity: 0;
        visibility: hidden;
        -webkit-transition: all 0.5s;
        -o-transition: all 0.5s;
        transition: all 0.5s;
      }

      .btn_type1:hover{
        background-color: #575757;
        color: #fff;
      }

      .btn_type1:hover span{
        -webkit-transform: translate(-10px, 0);
        -ms-transform: translate(-10px, 0);
        -o-transform: translate(-10px, 0);
        transform: translate(-10px, 0);
        -webkit-transition: all 0.3s;
        -o-transition: all 0.3s;
        transition: all 0.3s;
      }

      .btn_type1:hover span:after{
        opacity: 1;
        visibility: visible;
        -webkit-transform: translate(20px, 0);
        -ms-transform: translate(20px, 0);
        -o-transform: translate(20px, 0);
        transform: translate(20px, 0);
        -webkit-transition: all 0.3s;
        -o-transition: all 0.3s;
        transition: all 0.3s;
      }

      /*white button*/

      .first_screen_inner .btn,
      .blackout .btn,
      .blackout2 .btn{
        color: #fff;
      }

      .first_screen_inner .btn:hover,
      .blackout .btn:hover,
      .blackout2 .btn:hover{
        color: #fff;
      }

      .first_screen_inner .btn:before,
      .blackout .btn:before,
      .blackout2 .btn:before{
        border-color: #fff;
      }

      .first_screen_inner .btn:after,
      .blackout .btn:after,
      .blackout2 .btn:after{
        background-color: #fff;
      }

      .first_screen_inner .btn:hover:before,
      .blackout .btn:hover:before,
      .blackout2 .btn:hover:before{
        background-color: #fff;
        color: #0066cc;
      }

/* ------------------------------------------------

    5. Header

------------------------------------------------ */

  #header{
    position: fixed;
    z-index: 99;
    top: 0;
    left: 0;
    right: 0;
    padding: 0 30px;
  }
@media (max-width: 768px){
  #header{
    border-bottom: 1px solid rgba(255, 255, 255, 0.68);
    background-color: rgb(7, 47, 82);    
  }
}


  .header_inner{
    position: relative;
  }

  .logo{
    line-height: 17px;
    float: left;
    padding-top: 17px;
    z-index: 1;
    position: relative;  
  }

  .logo img{
    vertical-align: top;
  }


  /* --------------------------------------------
      5.1. Navigation
  -------------------------------------------- */

    #nav{
      float: right;
      padding:15px 0 5px;
    }

    .nav_btn{
      border: none;
      background: none;
      outline: none;
      width: 40px;
      height: 40px;
      margin-right: -4px;
      position: relative;
      z-index: 1;
      float: right;
    }

    .nav_btn:before{
      content: '';
      display: block;
      position: absolute;
      width: 28px;
      height: 2px;
      background-color: #fff;
      top: 10px;
      left: 50%;
      margin-left: -6px;
      -webkit-box-shadow: -5px 9px 0 #fff;
      box-shadow: -5px 9px 0 #fff;
      -webkit-transition: all 0.5s;
      -o-transition: all 0.5s;
      transition: all 0.5s;
    }

    .nav_btn:after{
      content: '';
      display: block;
      position: absolute;
      top: 28px;
      left: 50%;
      margin-left: -6px;
      width: 28px;
      height: 2px;
      background-color: #fff;
      -webkit-transition: all 0.5s;
      -o-transition: all 0.5s;
      transition: all 0.5s;
    }

    .nav_btn:hover:before{
      background-color: #fff;
      -webkit-box-shadow: 0 9px 0 #06c;
      box-shadow: 0 9px 0 #fff;
      -webkit-transition: all 0.3s;
      -o-transition: all 0.3s;
      transition: all 0.3s;
    }

    .nav_btn:hover:after{
      background-color: #fff;
      -webkit-transition: all 0.3s;
      -o-transition: all 0.3s;
      transition: all 0.3s;
    }

    .navigation{
    position: fixed;
    right: 0;
    top: 0px;
    background-color: rgba(43, 38, 38, 0.94);
    width: 100%;
    height: 100%;
    display: none;
    padding-top: 100px;
    display: none; /***menu oculto**/
    }

    .navigation>li{
      position: relative;
      text-align: right;
    }

    .navigation>li:not(:last-child){
      margin-bottom: 4px;
    }

    .navigation li a{
      display: inline-block;
      color: #fff;
      font-size: 18px;
      line-height: 1;
      border-radius:25px 0 0 25px;
      padding: 5px 50px 5px 30px;
      -webkit-transform: translate(100%, 0);
      -ms-transform: translate(100%, 0);
      -o-transform: translate(100%, 0);
      transform: translate(100%, 0);
    }
    #nav.opened .navigation{
      display: block !important;
    }
    #nav.opened .navigation li a{
      -webkit-transform: translate(10px, 0);
      -ms-transform: translate(10px, 0);
      -o-transform: translate(10px, 0);
      transform: translate(10px, 0);
    }

    #nav .navigation li a:hover{
      background-color: #06c;
      color: #fff;
      -webkit-transform: translate(0, 0);
      -ms-transform: translate(0, 0);
      -o-transform: translate(0, 0);
      transform: translate(0, 0);
    }

    #nav.opened .nav_btn:after{
      -webkit-transform-origin: 0 100%;
      -moz-transform-origin: 0 100%;
      -ms-transform-origin: 0 100%;
      -o-transform-origin: 0 100%;
      transform-origin: 0 100%;
      -webkit-transform: rotate(-42deg);
      -ms-transform: rotate(-42deg);
      -o-transform: rotate(-42deg);
      transform: rotate(-42deg);
    }

    #nav.opened .nav_btn:before{
      -webkit-transform-origin: 0 0;
      -moz-transform-origin: 0 0;
      -ms-transform-origin: 0 0;
      -o-transform-origin: 0 0;
      transform-origin: 0 0;
      -webkit-box-shadow: none;
      box-shadow: none;
      -webkit-transform: rotate(42deg);
      -ms-transform: rotate(42deg);
      -o-transform: rotate(42deg);
      transform: rotate(42deg);
    }

/* ------------------------------------------------

    6. First Screen

------------------------------------------------ */

  .first_screen_label{
    position: absolute;
    left: 50%;
    bottom: 35px;
    text-align: center;
    -webkit-transform: translate(-50%, 0);
    -ms-transform: translate(-50%, 0);
    -o-transform: translate(-50%, 0);
    transform: translate(-50%, 0);
  }

  .first_screen_label span{
    display: block;
    font-size: 16px;
    line-height: 20px;
    padding-bottom: 5px;
    padding-top: 15px;
  }

  .label_animation{
    animation: animationFrames linear 1s;
    animation-iteration-count: infinite;
    transform-origin: 50% 50%;
    -webkit-animation: animationFrames linear 1s;
    -webkit-animation-iteration-count: infinite;
    -webkit-transform-origin: 50% 50%;
    -moz-animation: animationFrames linear 1s;
    -moz-animation-iteration-count: infinite;
    -moz-transform-origin: 50% 50%;
    -o-animation: animationFrames linear 1s;
    -o-animation-iteration-count: infinite;
    -o-transform-origin: 50% 50%;
    -ms-animation: animationFrames linear 1s;
    -ms-animation-iteration-count: infinite;
    -ms-transform-origin: 50% 50%;
  }

  @keyframes animationFrames{
    0% {
      transform:  translate(0, -30px);
      opacity: 0;
    }
    40%{
      opacity: 1;
    }
    90%{
      opacity: 0;
    }
    100% {
      transform:  translate(0,0);
      opacity: 0;
    }
  }

  @-moz-keyframes animationFrames{
    0% {
      -moz-transform:  translate(0, -30px);
      opacity: 0;
    }
    40%{
      opacity: 1;
    }
    90%{
      opacity: 0;
    }
    100% {
      -moz-transform:  translate(0,0);
      opacity: 0;
    }
  }

  @-webkit-keyframes animationFrames {
    0% {
      -webkit-transform:  translate(0, -30px);
      opacity: 0;
    }
    40%{
      opacity: 1;
    }
    90%{
      opacity: 0;
    }
    100% {
      -webkit-transform:  translate(0,0);
      opacity: 0;
    }
  }

  @-o-keyframes animationFrames {
    0% {
      -o-transform:  translate(0, -30px);
      opacity: 0;
    }
    40%{
      opacity: 1;
    }
    90%{
      opacity: 0;
    }
    100% {
      -o-transform:  translate(0,0);
      opacity: 0;
    }
  }

  @-ms-keyframes animationFrames {
    0% {
      -ms-transform:  translate(0, -30px);
      opacity: 0;
    }
    40%{
      opacity: 1;
    }
    90%{
      opacity: 0;
    }
    100% {
      -ms-transform:  translate(0,0);
      opacity: 0;
    }
  }

/* ------------------------------------------------

    7. Abot Box

------------------------------------------------ */

  .about_text{
    padding-top: 45px;
    margin-top: 45px;
    position: relative;
    text-align: center;
  }

  .about_text:after{
    content: '';
    display: block;
    width: 100px;
    height: 1px;
    background-color: #1a5cb7;
    position: absolute;
    top: 0;
    left: 50%;
    margin-left: -50px;
  }


  .about_btn{
    padding-top: 54px;
    text-align: center;
  }

/* ------------------------------------------------

    8. Menu Box

------------------------------------------------ */

  .menu_slider{
    width: auto;
    margin: 60px -35px 0;
  }

  .menu_slider:not(:last-child){
    margin-bottom: 60px;
  }

  .menu_slider_item{
    padding: 0 35px;
  }

  .menu_list li{
    position: relative;
    color: #ccc;
    font-size: 16px;
    line-height: 20px;
    padding-right: 80px;
  }

  .menu_list li:not(:last-child){
    margin-bottom: 20px;
  }

  .menu_title{
    color: #fff;
    font-size: 24px;
    line-height: 30px;
    margin-bottom: 5px;
  }

  .menu_price{
    position: absolute;
    top: 0;
    right: 0;
    color: #fff;
    font-size: 24px;
    line-height: 30px;
  }

  .owl-nav>div{
    position: absolute;
    width: 20px;
    height: 40px;
    top: 50%;
    margin-top: -20px;
    left: -30px;
    opacity: 0.7;
  }

  .owl-nav>div:hover{
    opacity: 1;
  }

  .owl-nav>div.owl-next{
    left: auto;
    right: -30px;
  }

  .owl-nav > div:before{
    content: '';
    width: 30px;
    height: 30px;
    position: absolute;
    border-width: 1px;
    border-style: solid;
    border-color: transparent;
    top: 50%;
    margin-top: -15px;
    -moz-transform: rotate(-52deg) skewX(-15deg);
    -webkit-transform: rotate(-52deg) skewX(-15deg);
    -o-transform: rotate(-52deg) skewX(-15deg);
    -ms-transform: rotate(-52deg) skewX(-15deg);
    transform: rotate(-52deg) skewX(-15deg);
    -webkit-transition: all 0.5s;
    -o-transition: all 0.5s;
    transition: all 0.5s;
  }

  .owl-nav > div.owl-prev:before{
    border-top-color: #cccccc;
    border-left-color: #cccccc;
    left: 0;
  }

  .owl-nav > div.owl-next:before{
    border-bottom-color: #cccccc;
    border-right-color: #cccccc;
    right: 0;
  }

  .menu_btn .btn{
    padding-top: 8px;
  }

  .menu_btn>*:not(:last){
    margin-right: 20px;
  }

/* ------------------------------------------------

    9. Contacts Us

------------------------------------------------ */

  .contact_info{
    text-align: center;
  }

  .contact_address{
    font-size: 16px;
    line-height: 30px;
    margin-top: 50px;
  }

  .contact_phon{
    font-size: 24px;
    line-height: 30px;
  }

  .contact_email{
    font-size: 16px;
    line-height: 30px;
    color: #0066cc;
  }

  .contact_info:not(:last-child){
    margin-bottom: 40px;
  }

  input:not([type="radio"]):not([type="checkbox"]):not([type="file"]), textarea{
    width: 100%;
    border: none;
    outline: none;
    background-color: #fff;
    font: 400 14px/20px 'Lato', sans-serif;
    padding: 10px;
    color: #000;
  }

  .form_row{
    margin: 0 5px;
  }

  .form_row:after{
    content: '';
    display: block;
    clear: both;
  }

  .form_row:not(:last-child){
    margin-bottom: 10px;
  }

  [class*='form_col']{
    float: left;
    padding: 0 5px;
  }

  .form_col3{
    width: 33.333%;
  }

  .form_col1{
    width: 100%;
  }

  .form_btn{
    margin-top: 30px;
    text-align: center;
  }

/* ------------------------------------------------

    10. Animate Style

------------------------------------------------ */

  .animate_el{
    opacity: 0;
    visibility: hidden;
    -webkit-transition: all 0.5s;
    -o-transition: all 0.5s;
    transition: all 0.5s;
  }


  .tr_top{
    -webkit-transform: translate(0, -40px);
    -ms-transform: translate(0, -40px);
    -o-transform: translate(0, -40px);
    transform: translate(0, -40px);
  }
  .tr_bottom{
    -webkit-transform: translate(0, 40px);
    -ms-transform: translate(0, 40px);
    -o-transform: translate(0, 40px);
    transform: translate(0, 40px);
  }
  .tr_left{
    -webkit-transform: translate(-40px, 0);
    -ms-transform: translate(-40px, 0);
    -o-transform: translate(-40px, 0);
    transform: translate(-40px, 0);
  }
  .tr_right{
    -webkit-transform: translate(40px, 0);
    -ms-transform: translate(40px, 0);
    -o-transform: translate(40px, 0);
    transform: translate(40px, 0);
  }

  .section.active .animate_el{
    opacity: 1;
    visibility: visible;
    -webkit-transform: translate(0, 0);
    -ms-transform: translate(0, 0);
    -o-transform: translate(0, 0);
    transform: translate(0, 0);
  }

  .delay_1{
    -webkit-transition-delay: 0.9s;
    -o-transition-delay: 0.9s;
    transition-delay: 0.9s;
  }

  .delay_2{
    -webkit-transition-delay: 1.2s;
    -o-transition-delay: 1.2s;
    transition-delay: 1.2s;
  }

  .delay_3{
    -webkit-transition-delay: 1.5s;
    -o-transition-delay: 1.5s;
    transition-delay: 1.5s;
  }

  .delay_4{
    -webkit-transition-delay: 1.8s;
    -o-transition-delay: 1.8s;
    transition-delay: 1.8s;
  }

  .delay_5{
    -webkit-transition-delay: 2.1s;
    -o-transition-delay: 2.1s;
    transition-delay: 2.1s;
  }

  .delay_6{
    -webkit-transition-delay: 2.4s;
    -o-transition-delay: 2.4s;
    transition-delay: 2.4s;
  }

  .delay_7{
    -webkit-transition-delay: 2.7s;
    -o-transition-delay: 2.7s;
    transition-delay: 2.7s;
  }

  .delay_8{
    -webkit-transition-delay: 3s;
    -o-transition-delay: 3s;
    transition-delay: 3s;
  }
  /* --------------------------------------------
        5.2. Reviews
  -------------------------------------------- */

    .reviews_slider{
      width: auto;
      margin: 43px 0 0;
    }

    .review_text:before{
      content: '”';
      display: block;
      position: absolute;
      left:-60px;
      top: 20px;
      text-align: center;
      font-size: 80px;
      color: #0066cc;
    }

    .review{
      padding: 0 70px 10px;
      text-align: left;
      line-height: 20px;
      color: #333;
    }

    .review_box1{
      overflow:hidden;
    float: left;
      /*margin-right: 30px;*/
    }
  
  .review_box1 img{
      border-radius:50%;
    }

    .review_box2{
      position: relative;
      padding: 45px 74px 45px 110px;
      white-space: normal;
      overflow: hidden;
      text-align: center;
/*      border: 1px solid #e1e1e1;
      -webkit-box-shadow: 0 4px 5px rgba(0,0,0,0.05);
      box-shadow: 0 4px 5px rgba(0,0,0,0.05);*/
    }

    .review_name{
      font-size: 16px;
      line-height: 20px;
      font-weight: 700;
      color: #fff;
    }

    .post_name{
      font-size: 16px;
      line-height: 20px;
      font-weight: 400;
      color: #fff;
    }

    .review_text{
      position: relative;
      display: inline-block;
      margin-top: 25px;
      font-size: 24px;
      line-height: 36px;
      color: #fff;
    }
@media (max-width: 768px){
  .review_text{
    font-size: 18px;
    line-height:26px;
    text-align: center;
  }
  .review_box2{
    padding: 0;
  }
}

    /*carousel*/

    .owl-nav>div{
      position: absolute;
      top: 50%;
      margin-top: -30px;
      left: 4px;
      width: 30px;
      height: 60px;
      color: #fff;
      -webkit-transition: all 0.5s;
      -o-transition: all 0.5s;
      transition: all 0.5s;
    }

    .owl-nav>div:hover{
      opacity: 0.5;
      -webkit-transition: all 0.3s;
      -o-transition: all 0.3s;
      transition: all 0.3s;
    }

    .owl-nav>div.owl-next{
      left: auto;
      right: 4px;
      text-align: right;
    }

    .owl-nav>div:before{
      content: "\f104";
      font: normal normal normal 50px/60px FontAwesome;
    }

    .owl-nav>div.owl-next:before{
      content: "\f105";
    }

    .owl-dots{
      position: absolute;
      width: 100%;
      bottom: -60px;
      left: 0;
      text-align: center;
    }

    .owl-dots>div{
      display: inline-block;
      width: 10px;
      height: 10px;
      margin: 0 8px;
      border-radius: 50%;
      border: 2px solid #b0b0b0;
      background-color: #b0b0b0;
    }

    .owl-dots>div.active{
      border-color: #0066cc;
      background: none;
    }

    .owl-nav > div.owl-next,.owl-nav > div.owl-prev{
      overflow: visible;
      width: 30px;
      height: 60px;
      font-size: 0;
    }

    .owl-nav > div:before{
      content: '' !important;
      width: 40px;
      height: 40px;
      position: absolute;
      border-width: 1px;
      border-style: solid;
      border-color: transparent;
      top: 50%;
      margin-top: -20px;
      -moz-transform: rotate(-52deg) skewX(-15deg);
      -webkit-transform: rotate(-52deg) skewX(-15deg);
      -o-transform: rotate(-52deg) skewX(-15deg);
      -ms-transform: rotate(-52deg) skewX(-15deg);
      transform: rotate(-52deg) skewX(-15deg);
      -webkit-transition: all 0.5s;
      -o-transition: all 0.5s;
      transition: all 0.5s;
    }

    .owl-nav > div:hover:before{
      -webkit-transition: all 0.3s;
      -o-transition: all 0.3s;
      transition: all 0.3s;
    }

    .reviews_slider .owl-nav > div.owl-prev:before{
      border-top-color: #cccccc;
      border-left-color: #cccccc;
      left: 0;
    }

    .reviews_slider .owl-nav > div.owl-next:before{
      border-bottom-color: #cccccc;
      border-right-color: #cccccc;
      right: 0;
    }

    /*basic style slider*/

    .owl-nav > div.owl-next:before{
      right: 0;
    }

    .owl-nav > div.owl-prev:before{
      left: 0;
    }

    .owl-nav > div.owl-next:hover:before{
      border-bottom-color: #0066cc;
      border-right-color: #0066cc;
    }

    .owl-nav > div.owl-prev:hover:before{
      border-top-color: #0066cc;
      border-left-color: #0066cc;
    }
 /* ------------------------------------------------
      5.4. Courses University
  -------------------------------------------------*/
    .courses_box{
      padding-bottom: 100px;
      overflow: hidden;
    }
    .course_indent{
      /* padding: 0 15px; */
      padding-top: 10px;
      padding-bottom: 18px;
      margin: 0 -15px;
    }
      .course_slider{
        text-align: center;
        margin-top: -30px;
      }
        .course_slider .owl-item{
          padding: 0 15px;
          display: inline-block;
        }
          .course_slider_figure{
            margin: 60px 0 30px;
            position: relative;
            -webkit-transition: all ease 0.5s;
               -moz-transition: all ease 0.5s;
                -ms-transition: all ease 0.5s;
                 -o-transition: all ease 0.5s;
                    transition: all ease 0.5s;
          }
            .course_slider_img{

            }
            .course_slider_img img{
                min-width: 100%;
            }            
            .course_slider_text{
              text-align: center;
              min-height: 190px;
              background-color: #FFF;
              padding: 25px 15px 0 15px;
              -webkit-transition: all ease 0.5s;
                 -moz-transition: all ease 0.5s;
                  -ms-transition: all ease 0.5s;
                   -o-transition: all ease 0.5s;
                      transition: all ease 0.5s;
            }
              .course_slider_figure:hover .course_slider_text{
                background-color: #025DB9;
                -webkit-transition: all ease 0.5s;
                   -moz-transition: all ease 0.5s;
                    -ms-transition: all ease 0.5s;
                     -o-transition: all ease 0.5s;
                        transition: all ease 0.5s;
              }
              .course_slider_text h4{
                font-size: 24px;
                line-height: 26px;
                font-weight: 300;
                color: #333;
                margin-bottom: 25px;
              }
                .course_slider_figure:hover .course_slider_text h4{
                  color: #FFF;
                  -webkit-transition: all ease 0.5s;
                   -moz-transition: all ease 0.5s;
                    -ms-transition: all ease 0.5s;
                     -o-transition: all ease 0.5s;
                        transition: all ease 0.5s;
                }
              .course_slider_text p{
                font-size: 16px;
                line-height: 26px;
                color: #373737;
              }
                .course_slider_figure:hover .course_slider_text p{
                  color: #FFF;
                  -webkit-transition: all ease 0.5s;
                   -moz-transition: all ease 0.5s;
                    -ms-transition: all ease 0.5s;
                     -o-transition: all ease 0.5s;
                        transition: all ease 0.5s;
                }
            .course_slider_figure a{
              position: absolute;
              z-index: 9;
              top: 0;
              right: 0;
              bottom: 0;
              left: 0;
            }
          .course_slider_figure:hover{
            -webkit-transform: translateY(-30px);
               -moz-transform: translateY(-30px);
                -ms-transform: translateY(-30px);
                 -o-transform: translateY(-30px);
                    transform: translateY(-30px);
            -webkit-transition: all ease 0.5s;
               -moz-transition: all ease 0.5s;
                -ms-transition: all ease 0.5s;
                 -o-transition: all ease 0.5s;
                    transition: all ease 0.5s;
              -webkit-box-shadow: 0px 15px 30px rgba(0,0,0,0.1);
                      box-shadow: 0px 15px 30px rgba(0,0,0,0.1);
          }
    .button_after_carousel{
      text-align: center;
    }
      .button_after_carousel a{

      }


/* ----------------------------------------------------------------
  Tabs
-----------------------------------------------------------------*/


.tabs {
  position: relative;
  margin: 0 0 30px 0;
}

ul.tab-nav:not(.tab-nav-lg) {
  margin: 0;
  border-bottom: 1px solid #DDD;
  list-style: none;
}

ul.tab-nav:not(.tab-nav-lg) li {
  float: left;
  border: 1px solid #DDD;
  border-bottom: 0;
  border-left: 0;
  height: 41px;
  text-align: center;
}

ul.tab-nav:not(.tab-nav-lg) li:first-child {
  margin-left: 15px;
  border-left: 1px solid #DDD;
}

ul.tab-nav:not(.tab-nav-lg) li a {
  display: block;
  padding: 0 15px;
  color: #444;
  height: 40px;
  line-height: 40px;
  background-color: #F2F2F2;
  font-size: 14px;
  font-weight: bold;
}

ul.tab-nav:not(.tab-nav-lg) li.ui-tabs-active a {
  position: relative;
  top: 1px;
  background-color: #FFF;
}


/* Tabs - Alternate Nav
-----------------------------------------------------------------*/

.tabs.tabs-alt ul.tab-nav li { border-color: transparent; }

.tabs.tabs-alt ul.tab-nav li:first-child { border-left: 0; }

.tabs.tabs-alt ul.tab-nav li a { background-color: #FFF; }

.tabs.tabs-alt ul.tab-nav li.ui-tabs-active a {
  border: 1px solid #DDD;
  border-bottom: 0;
}


/* Tabs - Top Border
-----------------------------------------------------------------*/

.tabs.tabs-tb ul.tab-nav li.ui-tabs-active a {
  top: -1px;
  height: 43px;
  line-height: 38px;
  border-top: 2px solid #1ABC9C;
}

.tabs.tabs-alt.tabs-tb ul.tab-nav li.ui-tabs-active a { height: 42px; }


/* Tabs - Bottom Border
-----------------------------------------------------------------*/

.tabs.tabs-bb ul.tab-nav li {
  border: 0;
  margin: 0;
}

.tabs.tabs-bb ul.tab-nav li a {
  background-color: transparent;
  border-bottom: 2px solid transparent;
}

.tabs.tabs-bb ul.tab-nav li.ui-tabs-active a {
  border-bottom: 2px solid #1ABC9C;
  top: -2px;
  height: 44px;
  line-height: 44px;
}


/* Tabs - Navigation Style 2
-----------------------------------------------------------------*/


ul.tab-nav.tab-nav2 {
  border-bottom: 0;
}

ul.tab-nav.tab-nav2 li {
  border: 0;
  margin-left: 10px;
}

ul.tab-nav.tab-nav2 li:first-child {
  margin-left: 0;
  border-left: 0;
}

ul.tab-nav.tab-nav2 li a {
  background-color: #F5F5F5;
  border-radius: 2px;
  box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1);
}

ul.tab-nav.tab-nav2 li.ui-state-active a {
  top: 0;
  background-color: #1ABC9C;
  color: #FFF;
}


/* Tabs - Large Navigation
-----------------------------------------------------------------*/


ul.tab-nav-lg {
  margin-bottom: 20px;
  list-style: none;
}

ul.tab-nav-lg li {
  float: left;
  position: relative;
  text-align: center;
  padding: 15px;
}

ul.tab-nav-lg li a {
  display: inline-block;
  color: #444;
  font-family: 'Raleway', sans-serif;
  font-size: 13px;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 2px;
}

ul.tab-nav.tab-nav-lg li i {
  display: block;
  font-size: 28px;
  margin: 0 0 7px;
}

ul.tab-nav-lg li.ui-tabs-active a {
  color: #1ABC9C;
}



ul.tab-nav-lg.tab-nav-section li.ui-tabs-active:before,
ul.tab-nav-lg.tab-nav-section li.ui-tabs-active:after {
  content: '';
  position: absolute;
  z-index: 2;
  top: auto;
  bottom: -50px;
  border: solid transparent;
}

ul.tab-nav-lg.tab-nav-section li.ui-tabs-active:after {
  border-top-color: #FFF;
  border-width: 16px;
  left: 50%;
  margin-left: -16px;
}

ul.tab-nav-lg.tab-nav-section li.ui-tabs-active:before {
  border-top-color: #FFF;
  border-width: 16px;
  left: 50%;
  margin-left: -16px;
}


/* Tabs - Content Area
-----------------------------------------------------------------*/

.tab-container {
  position: relative;
  padding: 20px 0 0;
}

ul.tab-nav li a i {
  position: relative;
  top: 1px;
  font-size: 14px;
  margin-right: 3px;
}

/* Tabs - Bordered
-----------------------------------------------------------------*/

.tabs-bordered ul.tab-nav li:first-child { margin-left: 0; }

.tabs-bordered .tab-container {
  border: 1px solid #DDD;
  border-top: 0;
  padding: 20px;
}


/* Tabs - Side Tabs
-----------------------------------------------------------------*/

.side-tabs ul.tab-nav {
  float: left;
  width: 200px;
  padding: 20px 0;
  border-bottom: 0;
  border-right: 1px solid #DDD;
}

.side-tabs ul.tab-nav li {
  float: none;
  border: 1px solid #DDD;
  border-right: 0;
  border-top: 0;
  height: auto;
  text-align: left;
}

.side-tabs ul.tab-nav li:first-child {
  margin-left: 0;
  border-top: 1px solid #DDD;
  border-left: 1px solid #DDD;
}

.side-tabs ul.tab-nav li a {
  height: auto;
  line-height: 44px;
}

.side-tabs ul.tab-nav li.ui-tabs-active a {
  top: 0;
  right: -1px;
}

.side-tabs .tab-container {
  overflow: hidden;
  padding: 15px 0 0 20px;
}

.ui-tabs .ui-tabs-hide {
  position: absolute !important;
  left: -10000px !important;
  display:block !important;
}


/* Tabs - Side Tabs & Nav Style 2
-----------------------------------------------------------------*/

.side-tabs ul.tab-nav.tab-nav2 { border: 0; }

.side-tabs ul.tab-nav.tab-nav2 li {
  border: 0;
  margin: 6px 0 0;
}

.side-tabs ul.tab-nav.tab-nav2 li:first-child { margin-top: 0; }

.side-tabs ul.tab-nav.tab-nav2 li a { box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.1); }

.side-tabs ul.tab-nav.tab-nav2 li.ui-state-active a { right: 0; }


/* Tabs - Side Tabs & Bordered
-----------------------------------------------------------------*/

.tabs-bordered.side-tabs ul.tab-nav {
  position: relative;
  padding: 0;
  z-index: 2;
  margin-right: -1px;
}

.tabs-bordered.side-tabs ul.tab-nav li a {
  height: auto;
  line-height: 44px;
}

.tabs-bordered.side-tabs ul.tab-nav li.ui-tabs-active a {
  right: -1px;
  border-right: 1px solid #FFF;
}

.tabs-bordered.side-tabs .tab-container {
  overflow: hidden;
  padding: 20px;
  border-top: 1px solid #DDD;
}





/* ------------------------------------------------

    11. Spacing

------------------------------------------------ */

.m0{margin: 0;}
.m5{margin: 5px;}

.mb0{margin-bottom: 0;}
.mb5{margin-bottom: 5px;}
.mb10{margin-bottom: 10px;}
.mb20{margin-bottom: 20px;}
.mb30{margin-bottom: 30px;}
.mb40{margin-bottom: 40px;}
.mb50{margin-bottom: 50px;}

.mt0{margin-top: 0;}
.mt5{margin-top: 5px;}
.mt10{margin-top: 10px;}
.mt20{margin-top: 20px;}
.mt30{margin-top: 30px;}
.mt40{margin-top: 40px;}
.mt50{margin-top: 50px;}

.p0{padding: 0;}
.p5{padding: 5px;}

.pb0{padding-bottom: 0;}
.pb5{padding-bottom: 5px;}
.pb10{padding-bottom: 10px;}
.pb20{padding-bottom: 20px;}
.pb30{padding-bottom: 30px;}
.pb40{padding-bottom: 40px;}
.pb50{padding-bottom: 50px;}

.pt0{padding-top: 0;}
.pt5{padding-top: 5px;}
.pt10{padding-top: 10px;}
.pt20{padding-top: 20px;}
.pt30{padding-top: 30px;}
.pt40{padding-top: 40px;}
.pt50{padding-top: 50px;}
  /* --------------------------------------------
        5.2. Icon Box
  -------------------------------------------- */

    .icons_container>.row:not(:last-child){
      margin-bottom: 55px;
    }

    .icon_box{
      text-align: center;
      padding: 0 20px 60px;
    }

    .icon_box>i{
      display: block;
      font-size: 78px;
      color: #fff;
      margin-bottom: 13px;
      -webkit-transition: all 0.5s;
      -o-transition: all 0.5s;
      transition: all 0.5s;
    }

    .icon_box:hover>i{
      color: #ffc900;
      -webkit-transition: all 0.3s;
      -o-transition: all 0.3s;
      transition: all 0.3s;
    }

    .icon_box_title{
      font-size: 20px;
      line-height: 30px;
      color: #fff;
      margin-bottom: 13px;
    }

    .icon_box:hover .icon_box_title{
      color: #fff;
    }

/*    .icon_box .icon_box_title:hover{
      color: #0066cc;
    }*/

    .icon_box_title a{
      color: inherit;
    }


/* ------------------------------------------------

    14. Footer

------------------------------------------------ */

  footer {
    background-color: #f2f2f2;
    padding: 50px 0 25px;
  }

  .footer_inner{
    padding-bottom: 35px;
    border-bottom: 1px solid rgba(225, 225, 225, 0.15);
  }

  .footer_list li:not(:last-child){
    margin-bottom: 5px;
    font-size: 14px;
    line-height: 20px;
  }

  .footer_list a{
    color: #fff;
    position: relative;
    display: inline-block;
  }

  .footer_list a:before{
    content: '';
    display: block;
    position: absolute;
    bottom: 1px;
    left: 0;
    height: 1px;
    width: 0;
    background-color: #666;
    -webkit-transition: all 0.5s;
    -o-transition: all 0.5s;
    transition: all 0.5s;
  }

  .footer_list a:hover{
    color: #065e90;
  }

  .footer_list a:hover:before{
    width: 100%;
    background-color: #0066cc;
  }

  .footer_address{
    font-style: normal;
    font-size: 14px;
    line-height: 20px;
  }

  .email_link{
    position: relative;
    display: inline-block;
  }

  .email_link:before{
    content: '';
    display: block;
    position: absolute;
    bottom: 1px;
    left: 0;
    width: 100%;
    height: 1px;
    background-color: #0066cc;
    -webkit-transition: all 0.5s;
    -o-transition: all 0.5s;
    transition: all 0.5s;
  }

  .email_link:hover:before{
    width: 0;
    -webkit-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
  }

  .footer_address p:not(:last-child){
    margin-bottom: 10px;
  }

  .social_list{
    padding-top: 17px;
  }

  .social_list li{
    float: left;
  }

  .social_list li:not(:last-child){
    margin-right: 30px;
  }

  .social_list li a{
    font-size: 18px;
    color: #ccc;
  }

  .social_list li a:hover{
    color: #06c;
  }

  .footer_bottom{
    font-size: 13px;
    line-height: 20px;
    color: #fff;
    padding-top: 25px;
  }

  .footer_list1 li{
    float: left;
    position: relative;
  }

  .footer_list1 li:not(:first-child){
    padding-left: 22px;
  }

  .footer_list1 li:not(:first-child):before{
    content: '';
    display: block;
    position: absolute;
    top: 10px;
    left: 10px;
    width: 2px;
    height: 2px;
    background-color: #333;
  }

  .footer_list1 a{
    color: #fff;
  }

  .footer_list1 a:hover{
    color: #eee;
    text-decoration: underline;
  }



/****/
.ul-menu-principal{
  float: left;
}
.fone{
    float: left;
    color: #fff;
    font-size: 24px;
    font-weight: bold;
}
.fone{
  padding-top: 6px;
  margin-right: 6em;
}
.fone i:first-child{
  padding-top: 2px;
}
.ul-menu-principal li{
  float: left;
}
.ul-menu-principal li a{
  display: inline-block;
  color:#fff;
  padding: 3px 16px;
  text-transform: uppercase;
  border:1px solid #fff;
  border-radius: 4px;
  margin:0 10px;
  font-size: 14px;
}
.ul-menu-principal li i{
    position: relative;
    top: 0px;
    margin-right: 6px;

}
.ul-menu-principal li i.fa-line-chart{
  top:6px;
}
@media (max-width: 768px) {
    .ul-menu-principal, span.fone, .simulador .nav-tabs li a p,
    .simulador .btn_type1 span {
      display: none;
  }  
}




.bottommargin-sm{
      width: 100%;
    padding: 20px 15px;
    border-top: 2px solid #ffc900;
    background-color: rgb(255, 255, 255);
    min-height: 380px;
    border-bottom-left-radius: 4px;
    border-bottom-right-radius: 4px    
}
.simulador .nav>li {
    position: relative;
    display: block;
    background-color: #eee;
    border-top-left-radius: 4px;
    border-top-right-radius: 4px;
    color: #4d4d4d;
    width: 
  }
  .simulador .form-group{
    margin-bottom: 20px;
    /*display:inline-block;*/
  }
  .simulador .form-group label {
    color: #4d4d4d;
    text-transform: uppercase;
    /*float: left;*/
  }
  .simulador .form-group input{
    width: 20% !important;
    float: right;
  }
  .simulador .range{
    margin: 50px 0 30px;
  } 
  .simulador .form-group3 label{
    text-align: center;
    margin: 25px 0;
    padding-top: 25px;
    border-top: 1px solid rgba(14, 23, 31, 0.25);
  }
  .simulador .btn_type1{
    background-color: rgb(255, 201, 0);
    /*font-weight: bold;*/
  }
  .simulador .btn_type1:last-child{
    float: right;
  }
  .simulador .nav-tabs li a i{
    /*float: left;*/
    margin-right: 6px;
  }
  .simulador .nav-tabs {
    border-bottom: 1px solid #ffc900;
}
.simulador p{
  margin-bottom: 0;
  display: inline-block;
}
.nav-tabs>li.active>a, .nav-tabs>li.active>a:focus, .nav-tabs>li.active>a:hover{
  min-height: 31px;
}
.nav>li>a{
  padding: 10px 10px;
}