/*
 * Description: Cookiesland - Kendall.
 * Version: 0.0.1a
 * Last update: 28/06/2017
 * Author: Alberto Fdez
*/

/* Google fonts 
----------------*/

@import url('https://fonts.googleapis.com/css?family=Montserrat:300,400,600,700,800');
@import url('https://fonts.googleapis.com/css?family=Pacifico');
@import url('https://fonts.googleapis.com/css?family=Quicksand:500,700');

/* == Global ================== */
/* ============================ */

* { 
  margin: 0;
  padding: 0px;
} 

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

body { 
  background: #fff; 
  margin: 0; 
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

a {
  -webkit-transition: all 0.35s;
  -moz-transition: all 0.35s;
  transition: all 0.35s;
  color: #333;
}

a:hover,
a:focus {
  color: #555;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: 'Montserrat', sans-serif;
}

p {
  font-size: 16px;
  line-height: 1.5;
  margin-bottom: 20px;
}

/* == Logo & Submit ========== */
/* =========================== */

.logo{
  position: fixed;
  top: 30px;
  left: 60px;
  z-index: 99;
  font-family: 'Quicksand', sans-serif;
  font-weight: 700;
  color: white;
  font-size: 30px;
  letter-spacing: 2px;
  text-transform: lowercase;
}

.logo-img{
  width: 25px;
  margin-top: -4px;
}

.letter{
  position: fixed;
  top: 32px;
  right: 60px;
  z-index: 99;
  font-weight: 700;
  color: #333;
  font-size: 30px;
  cursor: pointer;
}

@media (max-width: 768px) {
  .logo {
  top: 20px;
  left: 30px;
  }
  .letter {
  top: 22px;
  right: 30px;
  }
}

/* == Panels ================== */
/* ============================ */

.panels {
  height: 100%;
}

.panels .wrapper{
  width: 80%;
  z-index: 3;
}

.panels hr {
  margin: 30px auto;
  border-color: white;
  border-width: 6px;
  max-width: 150px;
  border-radius: 50px;
}

.panels h1{
  font-size: 50px;
  text-align: center;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
}

.panels .left {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #e5b724;
  height: 100%;
  color: white;
}

.panels .image{
  width: 700px;
}

.panels .right {
  display: flex;
  justify-content: center;
  align-items: center;
  background: url(../img/agency.jpg) no-repeat center center;
  background-size: cover;
  height: 100%;
  color: white;
}

@media (max-width: 1200px) {
  .panels .left {
  height: 100%;
  }
  .panels .right {
  height: 100%;
  }
  .panels h1{
  font-size: 35px;
  }
}

/* == Modal =================== */
/* ============================ */

body.modal-open {
  overflow: inherit;
  padding-right: 0 !important;
}

.close-login{
  position: fixed;
  top:20px;
  right:20px;
  cursor: pointer;
}

.modal-content {
  position: relative;
  background: linear-gradient(
  rgba(255,255,255,0.65),
  rgba(255,255,255,0.65))
  ,url(../img/modal-agency.jpg) no-repeat center center;
  background-size: cover;
  -webkit-background-clip: padding-box;
  background-clip: padding-box;
  border: none;
  border-radius: 12px;
  outline: 0;
  -webkit-box-shadow: none;
  box-shadow: none;
  padding-bottom: 70px;
}

.modal-body h1{
  color: #111;
  font-size: 30px;
  margin-top: 60px;
  text-align: center;
  margin-bottom: 30px;
  font-family: 'Quicksand', sans-serif;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: lowercase;
}

.modal-body h2{
  font-family: 'Montserrat', sans-serif;
  color: #111;
  font-size: 20px;
  margin-top: 10px;
  text-align: center;
  margin-bottom: 30px;
  font-weight: 700;
  letter-spacing: 1px;
}

.modal-body p{
  font-family: 'Montserrat', sans-serif;
  color: #111;
  font-size: 14px;
  margin-top: 10px;
  text-align: center;
  margin-bottom: 30px;
  font-weight: 400;
  letter-spacing: 1px;
}

.modal-body input {
  font-size: 16px;
  min-height: 40px;
  border-radius: 50px;
  border: transparent;
  line-height: 20px;
  padding: 15px 30px 16px;
  margin-bottom: 10px;
  background-color: #f3f4f5;
  color: #444;
  width: 100%;
  opacity: 0.9;
  -webkit-transition: background-color 0.2s;
  transition: background-color 0.2s;
  font-family: 'Montserrat', sans-serif;
  letter-spacing: 1px;
}

.modal-body input:hover, 
.modal-body input:focus,
.modal-body input:active {
  outline: 0px! important;
  -webkit-appearance: none;
}

.modal-body button:hover, 
.modal-body button:focus,
.modal-body button:active {
  outline: 0px! important;
  -webkit-appearance: none;
}

/* == Animation ============ */
/* ========================= */

.bounce{
  animation: bounce 2s infinite;
  -webkit-animation: bounce 2s infinite;
  -moz-animation: bounce 2s infinite;
  -o-animation: bounce 2s infinite;
  }

@-webkit-keyframes bounce {
  0%, 20%, 50%, 80%, 100% {-webkit-transform: translateY(0);} 
  40% {-webkit-transform: translateY(-30px);}
  60% {-webkit-transform: translateY(-15px);}
  }

@-moz-keyframes bounce {
  0%, 20%, 50%, 80%, 100% {-moz-transform: translateY(0);}
  40% {-moz-transform: translateY(-30px);}
  60% {-moz-transform: translateY(-15px);}
  }

@-o-keyframes bounce {
  0%, 20%, 50%, 80%, 100% {-o-transform: translateY(0);}
  40% {-o-transform: translateY(-30px);}
  60% {-o-transform: translateY(-15px);}
  }

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {transform: translateY(0);}
  40% {transform: translateY(-30px);}
  60% {transform: translateY(-15px);}
  }
}

/* == Btn ================== */
/* ========================= */

.btn-default {
  color: #222222;
  background-color: white;
  border-color: white;
  -webkit-transition: all 0.35s;
  -moz-transition: all 0.35s;
  transition: all 0.35s;
}

.btn-default:hover,
.btn-default:focus,
.btn-default.focus,
.btn-default:active,
.btn-default.active,
.open > .dropdown-toggle.btn-default {
  color: #222222;
  background-color: #f2f2f2;
  border-color: #ededed;
}

.btn-default:active,
.btn-default.active,
.open > .dropdown-toggle.btn-default {
  background-image: none;
}

.btn-default.disabled,
.btn-default[disabled],
fieldset[disabled] .btn-default,
.btn-default.disabled:hover,
.btn-default[disabled]:hover,
fieldset[disabled] .btn-default:hover,
.btn-default.disabled:focus,
.btn-default[disabled]:focus,
fieldset[disabled] .btn-default:focus,
.btn-default.disabled.focus,
.btn-default[disabled].focus,
fieldset[disabled] .btn-default.focus,
.btn-default.disabled:active,
.btn-default[disabled]:active,
fieldset[disabled] .btn-default:active,
.btn-default.disabled.active,
.btn-default[disabled].active,
fieldset[disabled] .btn-default.active {
  background-color: white;
  border-color: white;
}

.btn-default .badge {
  color: white;
  background-color: #222222;
}

.btn-primary {
  color: white;
  background-color: #333;
  border-color: #333;
  -webkit-transition: all 0.35s;
  -moz-transition: all 0.35s;
  transition: all 0.35s;
}

.btn-primary:hover,
.btn-primary:focus,
.btn-primary.focus,
.btn-primary:active,
.btn-primary.active,
.open > .dropdown-toggle.btn-primary {
  color: white;
  background-color: #333;
  border-color: #333;

}

.btn-primary:active,
.btn-primary.active,
.open > .dropdown-toggle.btn-primary {
  background-image: none;
}

.btn-primary.disabled,
.btn-primary[disabled],
fieldset[disabled] .btn-primary,
.btn-primary.disabled:hover,
.btn-primary[disabled]:hover,
fieldset[disabled] .btn-primary:hover,
.btn-primary.disabled:focus,
.btn-primary[disabled]:focus,
fieldset[disabled] .btn-primary:focus,
.btn-primary.disabled.focus,
.btn-primary[disabled].focus,
fieldset[disabled] .btn-primary.focus,
.btn-primary.disabled:active,
.btn-primary[disabled]:active,
fieldset[disabled] .btn-primary:active,
.btn-primary.disabled.active,
.btn-primary[disabled].active,
fieldset[disabled] .btn-primary.active {
  background-color: #333;
  border-color: #333;
}

.btn-primary .badge {
  color: #333;
  background-color: white;
}

.btn-success {
  color: white;
  background-color: #e5b724;
  border-color: #e5b724;
  -webkit-transition: all 0.35s;
  -moz-transition: all 0.35s;
  transition: all 0.35s;
}

.btn-success:hover,
.btn-success:focus,
.btn-success.focus,
.btn-success:active,
.btn-success.active,
.open > .dropdown-toggle.btn-success {
  color: white;
  background-color: #e5b724;
  border-color: #e5b724;

}

.btn-success:active,
.btn-success.active,
.open > .dropdown-toggle.btn-successy {
  background-image: none;
}

.btn-success.disabled,
.btn-success[disabled],
fieldset[disabled] .btn-success,
.btn-success.disabled:hover,
.btn-success[disabled]:hover,
fieldset[disabled] .btn-success:hover,
.btn-success.disabled:focus,
.btn-success[disabled]:focus,
fieldset[disabled] .btn-success:focus,
.btn-success.disabled.focus,
.btn-success[disabled].focus,
fieldset[disabled] .btn-success.focus,
.btn-success.disabled:active,
.btn-success[disabled]:active,
fieldset[disabled] .btn-success:active,
.btn-success.disabled.active,
.btn-success[disabled].active,
fieldset[disabled] .btn-success.active {
  background-color:  #e5b724;
  border-color:  #e5b724;
}

.btn-success .badge {
  color:  #e5b724;
  background-color: white;
}

.btn {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  border: none;
  border-radius: 300px;
  letter-spacing: 2px;
}
.btn-xl {
  padding: 15px 30px;
}

::-moz-selection {
  color: white;
  text-shadow: none;
  background: #20222b;
}

::selection {
  color: white;
  text-shadow: none;
  background: #20222b;
}

img::selection {
  color: white;
  background: transparent;
}

img::-moz-selection {
  color: white;
  background: transparent;
}

body {
  webkit-tap-highlight-color: #20222b;
}


