/*
Classe de estilos referente ao site.
Desenvolvido por: Estudio Fante - www.estudiofante.com.br
Kevin Delgado - www.kevindelgado.com.br
*/

@charset "utf-8";

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

ol, ul {
  list-style: none;
}

*, *::after, *::before {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

body, html {
  width: 100%;
  height: 100%;
  margin:0;
}

body {
  margin:0;
  padding:0;
  overflow-x:hidden;
  font-family: 'Roboto', sans-serif;
  font-smoothing: antialiased;
  background:#fff;
}


input, textarea, select {
  font-family: 'Roboto', sans-serif;
  -webkit-appearance: none;
  -webkit-border-radius: 0;
}

a[href^=tel] { 
  color: inherit; 
  text-decoration: none; 
}

a img, img {
  max-width: 100%;
  height:auto;
  border:none;
}

a {
  text-decoration:none;	
}

svg {
  max-width: 100%;
}

.clr {
  clear:both;
}

.panel-md {
  min-width: 100%;
  height:100%;
  margin-top: -200%;
  position: fixed;
  z-index:9999;
  -webkit-transition: all .8s ease-in-out;
  -moz-transition: all .8s ease-in-out;
  -o-transition: all .8s ease-in-out;
  transition: all .8s ease-in-out;
}

.panel-md:target {
  margin-top: 0%;
  background:rgba(0,0,0,0.7);
}

.content-md {
  vertical-align: middle;
  text-align: center;
  position: relative;
  top: 50%;
  left: 50%;
  height: auto;
  max-height:90%;
  width: 70%;
  max-width:700px;
  padding:50px 20px 60px;
  background:#fff;
  -webkit-transform: translateX(-50%) translateY(-50%);
  -moz-transform: translateX(-50%) translateY(-50%);
  -ms-transform: translateX(-50%) translateY(-50%);
  transform: translateX(-50%) translateY(-50%);
}

.content-md h1 {
  font-weight:900;
  font-size:50px;
  color:#000!important;
  margin:0;
  text-align:center;
  margin:0 0 10px;
  line-height:120%;
}

.content-md p {
  font-weight:300;
  font-size:18px;
  color:#000!important;
  margin:0;
  text-align:center;
  margin:10px 0 0;
  line-height:120%;
}

.md-close {
  cursor:pointer;
  float:right;
  margin:0 0 5px 0;
}

.md-close img {
  border:none;
  margin:0!important;
}

@media screen and (max-width:700px) {
.content-md h1 {
  font-size:30px;
}
}

/* Logo */

.logo {
  width:100%;
  height: auto;
  padding:50px 0 40px;
  border-bottom:2px solid #2b2b2b;
}

.logo img {
  display:block;
  width:80%;
  max-width: 82px;
  height: auto;
  margin:0 0 0 10px;
}

@media screen and (max-width:700px) {
.logo {
  padding:40px 0 30px;
}
}

/* Menu */

.menu-home {
  height:auto;
  width:100%;
  text-align: center;
  margin:0;
}

.menu-home ul {
  margin:0 auto;
  width:auto;
  height:auto;
}

.menu-home li {
  display: inline-block;
  width:105px;
  height: auto;
  padding:20px 0;
  border-bottom:2px solid #2b2b2b;
}

.menu-home li a img {
  width:29px;
  margin:0 auto 10px;
  display:block;
}

.menu-home li:hover {
  background: #131313;
}

.menu-home a {
  font-size:10px;
  font-weight:900;
  text-align: center;
  text-transform:uppercase;
  display: inline-block;
  color: #5a5959;
  padding:0;
  margin:0;
  -webkit-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}

@media screen and (max-width:700px) {
.menu-home li {
  display: inline-block;
  width:74px;
  height: auto;
  padding:10px 0;
  border-bottom:1px solid #2b2b2b;
}

.menu-home li a img {
  width:20px;
  margin:0 auto 10px;
  display:block;
}

.menu-home a {
  font-size:8px;
  font-weight:900;
}
}

/* Início */

.inicio {
  width:100%;
  height: 100%;
  background:url(../images/bg.jpg) center top no-repeat;
  background-size: cover;
  position: relative;
}

.inicio-logo {
  position:absolute;
  left:50%;
  top:20px;
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
}

.inicio-logo img {
  width:184px;
  height: auto;
  display: block;
}

.inicio-content {
  position:absolute;
  left:50%;
  width:95%;
  top:55%;
  text-align:center;
  -webkit-transform: translateX(-50%) translateY(-50%);
  -moz-transform: translateX(-50%) translateY(-50%);
  -ms-transform: translateX(-50%) translateY(-50%);
  transform: translateX(-50%) translateY(-50%);
}

.inicio-content h1 {
  font-size:52px;
  font-weight:900;
  color:#fff;
  line-height:130%;
  margin:0 0 40px;
}

.inicio-content p {
  font-size:24px;
  font-weight:400;
  color:#fff;
  line-height:130%;
  margin:0;
}

.inicio-content a {
  display:block;
  margin:0 auto;
  width:52px;
  height: 28px;
  margin:60px auto 0;
  padding: 0 0 40px;
  background:url(../images/arrow_icon.png)  no-repeat;
  background-position: 50% 0;
  background-size: 100% auto;
  -webkit-transition: all .2s;
  -moz-transition: all .2s;
  -o-transition: all .2s;
  transition: all .2s;
}

.inicio-content a:hover {
  background:url(../images/arrow_icon.png)  no-repeat;
  background-position: 50% 10px;
  background-size: 100% auto;
}

.inicio-content a img {
  width:52px;
  height: auto;
  display: block;
  margin: 0 auto;
}

@media screen and (max-width:700px) {
.inicio-logo img {
  width:100px;
  height: auto;
  display: block;
}

.inicio-content {
  position:absolute;
  left:50%;
  width:95%;
  top:50%;
  text-align:center;
  -webkit-transform: translateX(-50%) translateY(-50%);
  -moz-transform: translateX(-50%) translateY(-50%);
  -ms-transform: translateX(-50%) translateY(-50%);
  transform: translateX(-50%) translateY(-50%);
}

.inicio-content h1 {
  font-size:25px;
  margin:0 0 30px;
}

.inicio-content p {
  font-size:18px;
}

.inicio-content a {
  padding:30px 0 0;
}

.inicio-content a img {
  width:30px;
}
}

/* Sobre */

.sobre {
  width:100%;
  height: auto;
  background:#f9f9f9;
  position: relative;
  padding: 80px 0;
}

.sobre-content {
  width:90%;
  max-width: 1100px;
  height: auto;
  margin:0 auto;
}

.sobre-item {
  width:50%;
  float:left;
  margin:0;
}

.sobre-item img {
  max-width:80%;
  height: auto;
  display: block;
  margin: 0 auto;
  border:12px solid #f9f9f9;
  box-shadow: 0 0 0 1px rgba(0,0,0,0.1);
}

.sobre-content h1 {
  font-size:50px;
  font-weight:900;
  color:#202020;
  line-height:130%;
  margin:15px 0 0;
}

.sobre-content h2 {
  font-size:30px;
  font-weight:400;
  color:#202020;
  line-height:130%;
  margin:15px 0 20px;
}

.sobre-content p {
  font-size:18px;
  font-weight:300;
  color:#202020;
  line-height:130%;
  margin:20px 0;
}

@media screen and (max-width:700px) {
.sobre {
  padding:50px 0;
}

.sobre-item {
  width:100%;
}

.sobre-item img {
  max-width:80%;
  border:8px solid #f9f9f9;
}

.sobre-content h1 {
  font-size:30px;
  margin:50px 0 0;
}

.sobre-content h2 {
  font-size:20px;
}

.sobre-content p {
  font-size:16px;
}
}

/* Slide */

.slide {
  width:100%;
  height: auto;
  background:#fff;
  position: relative;
  padding:70px 0;
}

.slide-content {
  width:90%;
  max-width: 1200px;
  height: auto;
  margin:0 auto;
}

.slide-item {
  width:90%;
  height: auto;
  margin:0 auto;
}

.slide-item img {
  display:block;
  width:80%;
  margin:0 auto;
  max-width: 140px;
}

@media screen and (max-width:600px) {
.slide-item img {
  width:70%;
}
}


/* Seguros */

.seguros {
  width:100%;
  height: auto;
  background:#0a72c9;
  position: relative;
  padding:0;
  border-top: 1px solid #5ba0db;
  border-bottom: 1px solid #5ba0db;
}

.seguros-content {
  width:100%;
  margin:0;
}

ul.tabs {
  list-style-type: none;
  margin: 0;
  padding: 0;
  width: 50%;
  float: left;
}

ul.tabs li {
  float: left;
  position: relative;
  width:33.3333333%;
  height:auto;
  margin:0;
  outline:0;
  text-align:center;
  background:#0a72c9;
  border:1px solid rgba(255,255,255,0.2);
  cursor:pointer;
}

ul.tabs li img {
  width:100%;
  height: auto;
  display: block;
  position: relative;
}

ul.tabs li a {
  text-decoration: none;
  color:#000;
}

ul.tabs li a div.full {
  position:absolute;
  left: 0px;
  top: 0px;
  width: 100%;
  height: 100%;
  z-index: 2;
}

ul.tabs li a div.full div {
  position:absolute;
  left:50%;
  width:95%;
  top:50%;
  text-align:center;
  -webkit-transform: translateX(-50%) translateY(-50%);
  -moz-transform: translateX(-50%) translateY(-50%);
  -ms-transform: translateX(-50%) translateY(-50%);
  transform: translateX(-50%) translateY(-50%);
}

ul.tabs li a span {
  display:block;
  width:50px;
  height: 50px;
  margin: 0 auto;
}

ul.tabs li a h1 {
  font-size:14px;
  font-weight:900;
  color:#fff;
  text-transform: uppercase;
  line-height:130%;
  margin:15px 0 0;
}

ul.tabs li:nth-child(1) a span {
  background:url(../images/seguros-automovel_icon.png) center top no-repeat;
  background-size: 100% auto;
}

ul.tabs li:nth-child(1).active span {
  background:url(../images/seguros-automovel_icon-hover.png) center top no-repeat;
  background-size: 100% auto;
}

ul.tabs li:nth-child(2) a span {
  background:url(../images/seguros-vida_icon.png) center top no-repeat;
  background-size: 100% auto;
}

ul.tabs li:nth-child(2).active span {
  background:url(../images/seguros-vida_icon-hover.png) center top no-repeat;
  background-size: 100% auto;
}

ul.tabs li:nth-child(3) a span {
  background:url(../images/seguros-residencial_icon.png) center top no-repeat;
  background-size: 100% auto;
}

ul.tabs li:nth-child(3).active span {
  background:url(../images/seguros-residencial_icon-hover.png) center top no-repeat;
  background-size: 100% auto;
}

ul.tabs li:nth-child(4) a span {
  background:url(../images/seguros-empresarial_icon.png) center top no-repeat;
  background-size: 100% auto;
}

ul.tabs li:nth-child(4).active span {
  background:url(../images/seguros-empresarial_icon-hover.png) center top no-repeat;
  background-size: 100% auto;
}

ul.tabs li:nth-child(5) a span {
  background:url(../images/seguros-pet_icon.png) center top no-repeat;
  background-size: 100% auto;
}

ul.tabs li:nth-child(5).active span {
  background:url(../images/seguros-pet_icon-hover.png) center top no-repeat;
  background-size: 100% auto;
}

ul.tabs li:nth-child(6) a span {
  background:url(../images/seguros-saude_icon.png) center top no-repeat;
  background-size: 100% auto;
}

ul.tabs li:nth-child(6).active span {
  background:url(../images/seguros-saude_icon-hover.png) center top no-repeat;
  background-size: 100% auto;
}

ul.tabs li:nth-child(7) a span {
  background:url(../images/seguros-previdencia_icon.png) center top no-repeat;
  background-size: 100% auto;
}

ul.tabs li:nth-child(7).active span {
  background:url(../images/seguros-previdencia_icon-hover.png) center top no-repeat;
  background-size: 100% auto;
}

ul.tabs li:nth-child(8) a span {
  background:url(../images/seguros-eletronico_icon.png) center top no-repeat;
  background-size: 100% auto;
}

ul.tabs li:nth-child(8).active span {
  background:url(../images/seguros-eletronico_icon-hover.png) center top no-repeat;
  background-size: 100% auto;
}

ul.tabs li:nth-child(9) a span {
  background:url(../images/seguros-viagem_icon.png) center top no-repeat;
  background-size: 100% auto;
}

ul.tabs li:nth-child(9).active span {
  background:url(../images/seguros-viagem_icon-hover.png) center top no-repeat;
  background-size: 100% auto;
}

ul.tabs li:hover {
  background: #0767b9;
}

ul.tabs li.active {
  background: #fff;
}

ul.tabs li.active a h1 {
  color:#0b72ca;
}

.block {
  width: 50%;
  float:left;
}

article {
  padding:20px 50px;
  float:left;
  width: 100%;
}

article h1 {
  font-size:40px;
  font-weight:900;
  color:#fff;
  line-height:130%;
  margin:25% 0 0;
}

article hr {
  width:160px;
  height: 1px;
  border: 0;
  outline: 0;
  background:#fff;
  margin: 30px 0;
}

article p {
  font-size:18px;
  font-weight:300;
  color:#fff;
  line-height:130%;
  margin:0 0 50px;
}

article a {
  font-size:12px;
  font-weight:900;
  color:#fff;
  display: inline-block;
  padding: 15px 25px;
  border: 2px solid #fff;
  margin:5px;
  text-transform: uppercase;
}

article a:hover {
  background: #fff;
  color:#0b72ca;
}

@media screen and (max-width:700px) {
ul.tabs,
.block {
  width: 100%;
}

ul.tabs li {
  width:33.3333333%;
}

ul.tabs li a span {
  width:30px;
  height: 30px;
}

ul.tabs li a h1 {
  font-size:10px;
  margin:10px 0 0;
}

article {
  padding:20px 20px 100px;
}

article h1 {
  font-size:24px;
  margin:25px 0 0;
}

article hr {
  width:100px;
  margin:20px 0;
}

article p {
  font-size:16px;
  margin:0 0 30px;
}

article a {
  font-size:10px;
  padding: 15px 25px;
}
}

/* Orcamento */

.contato {
  width:100%;
  height: auto;
  background:#fff;
  position: relative;
  padding: 80px 0;
}

.contato-content {
  width:90%;
  max-width: 1100px;
  height: auto;
  margin:0 auto;
  text-align: center;
}

.contato-content h1 {
  font-size:40px;
  font-weight:900;
  color:#0b72ca;
  line-height:130%;
  margin:0 0 50px;
}

.contato input {
  float:left;
  width:calc(50% - 20px);
  height:60px; 
  padding:0 2%;
  margin:0 10px 20px;
  background:#fff;
  outline:0;
  border:1px solid #d4d4d4;
  font-size:16px;
  color:#202020;
  font-weight:300;
  resize: none;
}

.contato input::-webkit-input-placeholder {
  color:#202020;
  font-weight:300;
}

.contato input:-moz-placeholder {
  color:#202020;
  font-weight:300;
}

.contato input::-moz-placeholder {
  color:#202020;
  font-weight:300;
}

.contato input:-ms-input-placeholder {  
  color:#000; 
  font-weight:900; 
  text-transform:uppercase;
}

.contato select {
  float:left;
  width:calc(50% - 20px);
  height:60px; 
  padding:0 2%;
  margin:0 10px 20px;
  background:#fff url(../images/select_icon.png) no-repeat;
  background-position: 97% 50%;
  background-size: 20px auto;
  outline:0;
  border:1px solid #d4d4d4;
  font-size:16px;
  color:#202020;
  font-weight:300;
  resize: none;
}

.contato textarea {
  width:calc(100% - 20px);
  height:130px; 
  padding:1.5% 2% 0;
  margin:0 10px;
  background:#fff;
  outline:0;
  border:1px solid #d4d4d4;
  font-size:16px;
  color:#202020;
  font-weight:300;
  resize: none;
}

.contato textarea::-webkit-input-placeholder {
  color:#202020;
  font-weight:300;
}

.contato textarea:-moz-placeholder {
  color:#202020;
  font-weight:300;
}

.contato textarea::-moz-placeholder {
  color:#202020;
  font-weight:300;
}

.contato textarea:-ms-input-placeholder {  
  color:#202020;
  font-weight:300; 
}

.contato input[type=submit] {
  height:60px;   
  margin:15px 10px 0;
  width:calc(100% - 20px);
  color:#fff; 
  background:#0b72ca;
  font-size:18px;
  font-weight:900;
  text-decoration:none;
  cursor:pointer;
  border:none;
  -webkit-margin-start: none;
  -webkit-margin-end: none;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  transition: all 0.3s;
}

.contato input[type=submit]:hover {
  background:#0662b0;
}

@media screen and (max-width:700px) {
.contato-content h1 {
  font-size:30px;
}

.contato input {
  width:calc(100% - 20px);
  height:50px; 
  padding:0 2%;
  margin:0 10px 10px;
}

.contato select {
  width:calc(100% - 20px);
  height:50px; 
  padding:0 2%;
  margin:0 10px 10px;
}

.contato textarea {
  height:100px; 
  font-size:16px;
}

.contato input[type=submit] {
  height:50px;   
  margin:10px 10px 0;
  width:calc(100% - 20px);
}
}

/* Footer */

.footer {
  width:100%;
  height: auto;
  background:#161415;
  position: relative;
  padding:50px 0;
}

.footer-content {
  width:90%;
  max-width: 1100px;
  height: auto;
  margin:0 auto;
}

.footer-sobre {
  width:50%;
  float:left;
  height: auto;
  margin:0;
}

.footer-sobre img {
  width:50%;
  max-width:145px;
  display: block;
  height: auto;
  margin:0;
}

.footer-sobre p {
  font-size:14px;
  font-weight:300;
  color:#fff;
  line-height:130%;
  margin:25px 0 0;
}

.footer-menu {
  width:40%;
  float:right;
  height: auto;
  margin:0;
}

.footer-menu h1 {
  font-size:16px;
  font-weight:700;
  color:#fff;
  line-height:130%;
  margin:25px 0 15px 0;
  text-transform: uppercase;
}

.footer-menu h2 {
  display:block;
  float:left;
  width:50%;
  font-size:13px;
  font-weight:300;
  color:#fff;
  line-height:130%;
  margin:3px 0;
}

.footer-menu h2 strong {
  font-weight:700;
}

@media screen and (max-width:700px) {
.footer-sobre,
.footer-menu {
  width:100%;
  margin:20px 0;
}

.footer-menu h2 {
  width:100%;
}
}


/* End */

.end {
  width:100%;
  height: auto;
  background:#0d0b0c;
  position: relative;
  padding:20px 0;
  text-align: center;
}

.end img {
  width: 100px;
  max-width: 100px;
  display: block;
  margin: 0 auto;
}

/* Menu */

main {
  position: relative;
  z-index: 2;
  height: 100vh;
  -webkit-overflow-scrolling: touch;
  background-color: #fff;
  -webkit-transform: translateZ(0);
  -moz-transform: translateZ(0);
  -ms-transform: translateZ(0);
  -o-transform: translateZ(0);
  transform: translateZ(0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -webkit-transition: -webkit-transform 0.7s;
  -moz-transition: -moz-transform 0.7s;
  transition: transform 0.7s;
  -webkit-transition-timing-function: cubic-bezier(0.91, 0.01, 0.6, 0.99);
  -moz-transition-timing-function: cubic-bezier(0.91, 0.01, 0.6, 0.99);
  transition-timing-function: cubic-bezier(0.91, 0.01, 0.6, 0.99);
}

.navigation-is-open main {
  -webkit-transform: translateX(105px);
  -moz-transform: translateX(105px);
  -ms-transform: translateX(105px);
  -o-transform: translateX(105px);
  transform: translateX(105px);
}

.cd-nav-trigger {
  position: fixed;
  z-index: 3;
  left: 25px;
  bottom: 20px;
  height: 54px;
  width: 54px;
  background-color: #202020;
  border-radius: 50%;
  overflow: hidden;
  text-indent: 100%;
  white-space: nowrap;
  -webkit-transition: -webkit-transform 0.5s;
  -moz-transition: -moz-transform 0.5s;
  transition: transform 0.5s;
}

.cd-nav-trigger .cd-nav-icon {
  position: absolute;
  left: 50%;
  top: 50%;
  bottom: auto;
  right: auto;
  -webkit-transform: translateX(-50%) translateY(-50%);
  -moz-transform: translateX(-50%) translateY(-50%);
  -ms-transform: translateX(-50%) translateY(-50%);
  -o-transform: translateX(-50%) translateY(-50%);
  transform: translateX(-50%) translateY(-50%);
  width: 22px;
  height: 2px;
  background-color: #ffffff;
}

.cd-nav-trigger .cd-nav-icon::before, .cd-nav-trigger .cd-nav-icon:after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background-color: inherit;
  -webkit-transform: translateZ(0);
  -moz-transform: translateZ(0);
  -ms-transform: translateZ(0);
  -o-transform: translateZ(0);
  transform: translateZ(0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -webkit-transition: -webkit-transform 0.5s, width 0.5s, top 0.3s;
  -moz-transition: -moz-transform 0.5s, width 0.5s, top 0.3s;
  transition: transform 0.5s, width 0.5s, top 0.3s;
}

.cd-nav-trigger .cd-nav-icon::before {
  -webkit-transform-origin: right top;
  -moz-transform-origin: right top;
  -ms-transform-origin: right top;
  -o-transform-origin: right top;
  transform-origin: right top;
  -webkit-transform: translateY(-6px);
  -moz-transform: translateY(-6px);
  -ms-transform: translateY(-6px);
  -o-transform: translateY(-6px);
  transform: translateY(-6px);
}

.cd-nav-trigger .cd-nav-icon::after {
  -webkit-transform-origin: right bottom;
  -moz-transform-origin: right bottom;
  -ms-transform-origin: right bottom;
  -o-transform-origin: right bottom;
  transform-origin: right bottom;
  -webkit-transform: translateY(6px);
  -moz-transform: translateY(6px);
  -ms-transform: translateY(6px);
  -o-transform: translateY(6px);
  transform: translateY(6px);
}

@media screen and (max-width:700px) {
.navigation-is-open main {
  -webkit-transform: translateX(74px);
  -moz-transform: translateX(74px);
  -ms-transform: translateX(74px);
  -o-transform: translateX(74px);
  transform: translateX(74px);
}

.cd-nav-trigger {
  left:10px;
  bottom:30px;
}
}

.no-touch .cd-nav-trigger:hover .cd-nav-icon::after {
  top: 2px;
}

.no-touch .cd-nav-trigger:hover .cd-nav-icon::before {
  top: -2px;
}

.cd-nav-trigger svg {
  position: absolute;
  top: 0;
  left: 0;
}

.cd-nav-trigger circle {
  -webkit-transition: stroke-dashoffset 0.4s 0s;
  -moz-transition: stroke-dashoffset 0.4s 0s;
  transition: stroke-dashoffset 0.4s 0s;
}

.navigation-is-open .cd-nav-trigger {
  -webkit-transform: rotate(180deg);
  -moz-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  -o-transform: rotate(180deg);
  transform: rotate(180deg);
}

.navigation-is-open .cd-nav-trigger .cd-nav-icon::after,
.navigation-is-open .cd-nav-trigger .cd-nav-icon::before {
  width: 50%;
  -webkit-transition: -webkit-transform 0.5s, width 0.5s;
  -moz-transition: -moz-transform 0.5s, width 0.5s;
  transition: transform 0.5s, width 0.5s;
}

.navigation-is-open .cd-nav-trigger .cd-nav-icon::before {
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  transform: rotate(45deg);
}

.navigation-is-open .cd-nav-trigger .cd-nav-icon::after {
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  -o-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

.no-touch .navigation-is-open .cd-nav-trigger:hover .cd-nav-icon::after, .no-touch .navigation-is-open .cd-nav-trigger:hover .cd-nav-icon::before {
  top: 0;
}

.navigation-is-open .cd-nav-trigger circle {
  stroke-dashoffset: 0;
  -webkit-transition: stroke-dashoffset 0.4s 0.3s;
  -moz-transition: stroke-dashoffset 0.4s 0.3s;
  transition: stroke-dashoffset 0.4s 0.3s;
}

.cd-nav {
  position: fixed;
  z-index: 1;
  top: 0;
  left: 0;
  height: 100%;
  width: 105px;
  background-color: #202020;
  visibility: hidden;
  -webkit-transition: visibility 0s 0.7s;
  -moz-transition: visibility 0s 0.7s;
  transition: visibility 0s 0.7s;
}

@media screen and (max-width:700px) {
.cd-nav {
  width: 75px;
}
}

.cd-nav .cd-navigation-wrapper {
  height: 100%;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  -webkit-transform: translateZ(0);
  -moz-transform: translateZ(0);
  -ms-transform: translateZ(0);
  -o-transform: translateZ(0);
  transform: translateZ(0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  -o-transform: translateX(-50%);
  transform: translateX(-50%);
  -webkit-transition: -webkit-transform 0.7s;
  -moz-transition: -moz-transform 0.7s;
  transition: transform 0.7s;
  -webkit-transition-timing-function: cubic-bezier(0.86, 0.01, 0.77, 0.78);
  -moz-transition-timing-function: cubic-bezier(0.86, 0.01, 0.77, 0.78);
  transition-timing-function: cubic-bezier(0.86, 0.01, 0.77, 0.78);
}

.navigation-is-open .cd-nav {
  visibility: visible;
  -webkit-transition: visibility 0s 0s;
  -moz-transition: visibility 0s 0s;
  transition: visibility 0s 0s;
}

.navigation-is-open .cd-nav .cd-navigation-wrapper {
  -webkit-transform: translateX(0);
  -moz-transform: translateX(0);
  -ms-transform: translateX(0);
  -o-transform: translateX(0);
  transform: translateX(0);
  -webkit-transition: -webkit-transform 0.5s;
  -moz-transition: -moz-transform 0.5s;
  transition: transform 0.5s;
  -webkit-transition-timing-function: cubic-bezier(0.82, 0.01, 0.77, 0.78);
  -moz-transition-timing-function: cubic-bezier(0.82, 0.01, 0.77, 0.78);
  transition-timing-function: cubic-bezier(0.82, 0.01, 0.77, 0.78);
}

@media only screen and (min-width: 1170px) {
  .cd-nav .cd-navigation-wrapper::after {
    clear: both;
    content: "";
    display: table;
  }
}

.no-js main {
  height: auto;
  overflow: visible;
}

.no-js .cd-nav {
  position: static;
  visibility: visible;
}

.no-js .cd-nav .cd-navigation-wrapper {
  height: auto;
  overflow: visible;
  padding: 100px 5%;
  -webkit-transform: translateX(0);
  -moz-transform: translateX(0);
  -ms-transform: translateX(0);
  -o-transform: translateX(0);
  transform: translateX(0);
}

/* Owl */

.owl-carousel .owl-wrapper:after {
  content: ".";
  display: block;
  clear: both;
  visibility: hidden;
  line-height: 0;
  height: 0;
}

.owl-carousel{
  display: none;
  position: relative;
  width: 100%;
  clear:both;
  -ms-touch-action: pan-y;
}

.owl-carousel .owl-wrapper{
  display: none;
  position: relative;
  -webkit-transform: translate3d(0px, 0px, 0px);
}

.owl-carousel .owl-wrapper-outer{
  overflow: hidden;
  position: relative;
  width: 100%;
}

.owl-carousel .owl-wrapper-outer.autoHeight{
  -webkit-transition: height 500ms ease-in-out;
  -moz-transition: height 500ms ease-in-out;
  -ms-transition: height 500ms ease-in-out;
  -o-transition: height 500ms ease-in-out;
  transition: height 500ms ease-in-out;
}
  
.owl-carousel .owl-item{
  float: left;
}

.owl-controls .owl-page,
.owl-controls .owl-buttons div{
  cursor: pointer;
}

.owl-controls {
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

.grabbing { 
  cursor:url(grabbing.png) 8 8, move;
}

.owl-carousel  .owl-wrapper,
.owl-carousel  .owl-item{
  -webkit-backface-visibility: hidden;
  -moz-backface-visibility:    hidden;
  -ms-backface-visibility:     hidden;
  -webkit-transform: translate3d(0,0,0);
  -moz-transform: translate3d(0,0,0);
  -ms-transform: translate3d(0,0,0);
}

.owl-theme .owl-controls{
  text-align: center;
  position: absolute;
  width: 100%;
  top:35%;
}

.owl-theme .owl-controls .owl-buttons div {
  display: block;
  width:14px;
  height: 27px;
}

.owl-theme .owl-controls .owl-buttons .owl-prev {
  position: absolute;
  left:0;
  background: url(../images/left-arrow.png) center top no-repeat;
  background-size: cover;
}

.owl-theme .owl-controls .owl-buttons .owl-next {
  position: absolute;
  right:0;
  background: url(../images/right-arrow.png) center top no-repeat;
  background-size: cover;
}

@media screen and (max-width:600px) {
.owl-theme .owl-controls .owl-buttons div {
  width:7px;
  height: 14px;
}
}

.owl-theme .owl-controls .owl-page{
  display: inline-block;
  zoom: 1;
  *display: inline;
}

.owl-theme .owl-controls .owl-page span{
  display: block;
  width: 12px;
  height: 12px;
  margin:5px 4px 0;
  -webkit-border-radius: 15px;
  -moz-border-radius: 15px;
  border-radius: 15px;
  background: #dddcc0;
}

.owl-theme .owl-controls .owl-page:hover span {
  background: #c8c7b0;
}

.owl-theme .owl-controls .owl-page.active span {
  background: #c8c7b0;
}

.owl-theme .owl-controls .owl-page span.owl-numbers{
  height: auto;
  width: auto;
  color: #FFF;
  padding: 2px 10px;
  font-size: 12px;
  -webkit-border-radius: 30px;
  -moz-border-radius: 30px;
  border-radius: 30px;
}

.owl-item.loading{
  min-height: 150px;
  background: url(AjaxLoader.gif) no-repeat center center
}