/* CSS STYLE OF BINGA.HU WEBSITE */
/* 2021. v. 3.0 */

/*** ---------- Colors ---------- ***/

:root {
  --white: #ffffff;
  --black: #151515;
  --darkgrey: #444444;
  --grey: #999999;
  --lightgrey: #f8f5f5;
  --bingared: #ff6456;
  --bingayellow: #ffcc66;
  --bingablue: #9fcefb;
  --kaiapink: #9B7E8C;
  --kaiapinkbg: #F7DFE1;

}
.white {
  color: var(--white);
}
.white-bg {
  background-color: var(--white);
}
.black {
  color: var(--black);
}
.black-bg {
  background-color: var(--black);
}
.dark-grey {
  color: var(--darkgrey);
}
.dark-grey-bg {
  background-color: var(--darkgrey);
}
.grey {
  color: var(--grey);
}
.grey-bg {
  background-color: var(--grey);
}
.light-grey {
  color: var(--lightgrey);
}
.light-grey-bg {
  background-color: var(--lightgrey);
}
.binga-red {
  color: var(--bingared);
}
.binga-red-bg {
  background-color: var(--bingared);
}
.binga-yellow {
  color: var(--bingayellow);
}
.binga-yellow-bg {
  background-color: var(--bingayellow);
}
.binga-blue {
  color: var(--bingablue);
}
.binga-blue-bg {
  background-color: var(--bingablue);
}
.kaia-pink {
  color: var(--kaiapink);
}
.kaia-pink-bg {
  background-color: var(--kaiapinkbg);
}


/*** ---------- GENERAL ---------- ***/

body {
  font-family: "Raleway", sans-serif;
  font-size: 16px;
  font-weight: 300;
  color: var(--white);
  background-color: var(--lightgrey);
}
h1 {
  font-weight: 900;
  text-transform: uppercase;
  font-size: 2rem;
	line-height: 2.125rem;
	margin-bottom: 1.875rem;
}
@media (min-width: 576px) {
  h1 {
    font-size: 2.75rem;
  	line-height: 3rem;
  	margin-bottom: 2.75rem;
  }
}
@media (min-width: 768px) {
  h1 {
    font-size: 3.25rem;
  	line-height: 3.5rem;
  	margin-bottom: 3.25rem;
  }
}
@media (min-width: 1600px) {
  h1 {
    font-size: 4rem;
  	line-height: 4.25rem;
  	margin-bottom: 4rem;
  }
}
h2 {
  font-weight: 900;
  text-transform: uppercase;
  font-size: 1.875rem;
  line-height: 1.875rem;
  margin-bottom: 1.875rem;
}
@media (min-width: 768px) {
  h2 {
    font-size: 2rem;
    line-height: 2rem;
    margin-bottom: 2rem;
  }
}
h3 {
  font-weight: 300;
  text-transform: uppercase;
  font-size: 1rem;
  line-height: 1.125rem;
  margin-bottom: 0.3125rem;
  color: rgba(255, 255, 255, 0.7);
}
@media (min-width: 1600px) {
  h3 {
    font-size: 1.125rem;
    line-height: 1.5rem;
    margin-bottom: 0.5rem;
  }
}
h4 {
  font-weight: 900;
  text-transform: uppercase;
  font-size: 1.5rem;
  line-height: 1.75rem;
  margin-bottom: 1.875rem;
}
@media (min-width: 1600px) {
  h4 {
    font-size: 1.75rem;
    line-height: 2.25rem;
    margin-bottom: 1.75rem;
  }
}
h5 {
  font-weight: 900;
  text-transform: uppercase;
  font-size: 1rem;
  line-height: 1.25rem;
  margin-bottom: 1.5rem;
}
@media (min-width: 1600px) {
  h5 {
    font-size: 1.25rem;
    line-height: 2.25rem;
    margin-bottom: 2rem;
  }
}
p {
  font-weight: 300;
  font-size: 1rem;
	line-height: 1.5rem;
  color: var(--grey);
  margin-bottom: 0;
}
@media (min-width: 1600px) {
  p {
    font-size: 1.25rem;
    line-height: 1.75rem;
  }
}
.fullheight {
  overflow-x: hidden;
  -webkit-border-radius: 15px;
  -moz-border-radius: 15px;
  border-radius: 15px;
  margin: 15px;
  padding: 15px;
  min-height: calc(100vh - 30px);
}
@media (min-width: 768px) {
  .fullheight {
    margin: 30px;
    min-height: calc(100vh - 60px);
  }
}
.shortheight {
  background-color: var(--black);
  overflow-x: hidden;
  -webkit-border-radius: 15px;
  -moz-border-radius: 15px;
  border-radius: 15px;
  margin: 15px;
  padding-left: 15px;
  padding-right: 15px;
  padding-top: 30px;
  padding-bottom: 30px;
}
@media (min-width: 768px) {
  .shortheight {
    margin: 30px;
    padding-top: 60px;
    padding-bottom: 60px;
  }
}
.container-fluid {
  margin: 0px;
  padding: 0px;
}
.img-wrapper {
  overflow-x: hidden;
  -webkit-border-radius: 15px;
  -moz-border-radius: 15px;
  border-radius: 15px;
  margin: 15px;
}
@media (min-width: 768px) {
  .img-wrapper {
    margin: 30px;
  }
}


/*** ---------- HOME ---------- ***/

#home {
  position: relative;
  overflow: hidden;
  -webkit-border-radius: 15px;
  -moz-border-radius: 15px;
  border-radius: 15px;
  z-index: 1;
}
#hometwo {
  background-image: url('../img/home-bg.jpg');
  background-repeat: no-repeat !important;
  background-size: cover !important;
  background-position: center;
  -webkit-border-radius: 15px;
  -moz-border-radius: 15px;
  border-radius: 15px;
  z-index: 1;
}
@media (min-width: 996px) {
  #hometwo {
    background-image: url('../img/home-bg-l.jpg');
  }
}
#homebg {
  position: absolute;
  min-width: 100%;
  min-height: 100%;
  object-fit: cover;
}
.header-wrapper {
  width: 100%;
  height: 30px;
  z-index: 100;
}
.logo {
  float:left;
  width: 86px;
  height: 30px;
  z-index: 100;
}
@media (min-width: 992px) {
  .logo {
    margin-left: 15px;
    margin-top: 15px;
  }
}
.lang-btn-wrapper, .back-btn-wrapper{
  float: right;
  z-index: 100;
  margin-top: 5px;
}
.lang-btn {
  display: block;
  font-weight: 400;
  font-size: 0.75rem;
  text-align: center;
  z-index: 100;
  padding-left: 10px;
  padding-right: 10px;
  height: 30px;
  line-height: 30px;
  text-transform: uppercase;
  border-radius: 15px;
  border-style: solid;
  border-width: 1px;
  border-color: var(--white);
}
@media (min-width: 992px) {
  .lang-btn {
    margin-right: 15px;
    margin-top: 15px;
  }
}
a.lang-btn:link, a.lang-btn:visited {
  color: var(--white);
  text-decoration: none;
  outline: 0;
  opacity: 0.5;
  -webkit-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -ms-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}
a.lang-btn:hover, a.lang-btn:active {
  color: var(--white);
  text-decoration: none;
  outline: 0;
  opacity: 1;
  -webkit-transition: all 0.4s ease-in-out;
  -moz-transition: all 0.4s ease-in-out;
  -ms-transition: all 0.4s ease-in-out;
  -o-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}

.home-content {
  position: absolute;
  z-index: 1000;
}
.author {
  display: block;
  clear: both;
  font-style: italic;
  text-align: center;
  font-size: 0.75rem;
}
@media (min-width: 992px) {
  .author {
    font-size: 1rem;
  }
}


/*** ---------- INTRO ---------- ***/

.mouse_icon {
  position: relative;
  width: 30px;
  height: 45px;
  border: 1px solid var(--white);
  border-radius: 15px;
}
.mouse_icon:after {
  content: '';
  width: 4px;
  height: 6px;
  position: absolute;
  top: 30px;
  background-color: var(--bingared);
  left: 50%;
  transform: translateX(-50%);
  opacity: 1;
  animation: mouse 2s infinite;
  border-radius: 50%;
}
@keyframes mouse {
  0% {
        opacity: 1;
        top: 10px;
        }
  100% {
        opacity: 0;
        top: 25px;
        }
}


/*** ---------- Brands ---------- ***/

.brand-logo {
  width: 80%;
  height: auto;
  margin-bottom: 2.75rem;
}
@media (min-width: 576px) {
  .brand-logo {
    width: 80%;
    height: auto;
    margin-bottom: 3.75rem;
  }
}


/*** ---------- PROJECTS ---------- ***/

#kaia {
  background-image:
    linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)),
    url('../img/kaia-project-bg.jpg');
  background-repeat: no-repeat !important;
  background-size: cover !important;
  background-position: center;
}
#brendon {
  background-image:
    linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)),
    url('../img/brendon-project-bg.jpg');
  background-repeat: no-repeat !important;
  background-size: cover !important;
  background-position: center;
}
#woodoo {
  background-image:
    linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)),
    url('../img/woodoo-cafe-project-bg.jpg');
  background-repeat: no-repeat !important;
  background-size: cover !important;
  background-position: center;
}
#kispiac {
  background-image:
    linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)),
    url('../img/kispiac-project-bg-1600x900.jpg');
  background-repeat: no-repeat !important;
  background-size: cover !important;
  background-position: center;
}
.p-btn {
  font-weight: 700;
  font-size: 0.75rem;
  text-align: center;
  z-index: 100;
  padding-top: 14px;
  padding-bottom: 14px;
  padding-left: 42px;
  padding-right: 42px;
  margin-top: 30px;
  line-height: 42px;
  text-transform: uppercase;
  -webkit-border-radius: 21px;
  -moz-border-radius: 21px;
  border-radius: 21px;
  border-style: solid;
  border-width: 1px;
}
a.p-btn:link, a.p-btn:visited {
  color: var(--white);
  border-color: var(--white);
  text-decoration: none;
  outline: 0;
  -webkit-transition: all 0.4s ease-in-out;
  -moz-transition: all 0.4s ease-in-out;
  -ms-transition: all 0.4s ease-in-out;
  -o-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}
a.p-btn:hover, a.p-btn:active {
  background-color: var(--bingared);
  border-color: var(--bingared);
  color: var(--white);
  text-decoration: none;
  outline: 0;
  -webkit-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -ms-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}


/*** ---------- SERVICES ---------- ***/

.services {
  padding-top: 60px;
  padding-bottom: 60px;
  overflow-x: hidden;
}
.left{
  margin-bottom: 60px;
}
@media (min-width: 768px) {
  .left .project-btn {
    margin-top: 60px;
  }
}
.bor-top {
  border-top: 1px;
  border-top-style: solid;
  border-top-color: var(--darkgrey);
  padding-top: 30px;
  padding-bottom: 30px;
}
.bor-bottom {
  border-bottom: 1px;
  border-bottom-style: solid;
  border-bottom-color: var(--darkgrey);
}


/*** ---------- CONTACT ---------- ***/

#contact p {
  margin-bottom: 2rem;
}
.hello-wrapper {
  display: block;
  margin-bottom: 4rem;
  margin-top: 1.875rem;
}
.hello {
  font-weight: 700;
  font-size: 1.875rem;
  line-height: 2.125rem;
}
@media (min-width: 1400px) {
  .hello {
    font-size: 2rem;
    line-height: 2.5rem;
  }
}
a.hello:link, a.hello:visited {
  color: var(--white);
  text-decoration: none;
  outline: 0;
  opacity: 1;
  -webkit-transition: all 0.4s ease-in-out;
  -moz-transition: all 0.4s ease-in-out;
  -ms-transition: all 0.4s ease-in-out;
  -o-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}
a.hello:hover, a.hello:active {
  color: var(--white);
  text-decoration: none;
  outline: 0;
  opacity: 0.4;
  -webkit-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -ms-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}
.icon-wrapper {
  display: inline-block;
  margin-left: 0.3rem;
  margin-right: 0.3rem;
}
.icon {
  display: block;
  width: 3.125rem;
  height: 3.125rem;
  font-size: 1.25rem;
  line-height: 3rem;
  -webkit-border-radius: 1.5625rem;
  -moz-border-radius: 1.5625rem;
  border-radius: 1.5625rem;
  border-style: solid;
  border-width: 1px;
  border-color: var(--white);
}
a.icon:link, a.icon:visited {
  color: var(--white);
  text-decoration: none;
  outline: 0;
  opacity: 1;
  -webkit-transition: all 0.4s ease-in-out;
  -moz-transition: all 0.4s ease-in-out;
  -ms-transition: all 0.4s ease-in-out;
  -o-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}
a.icon:hover, a.icon:active {
  color: var(--white);
  text-decoration: none;
  outline: 0;
  opacity: 0.4;
  -webkit-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -ms-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}


/*** ---------- FOOTER MENU ---------- ***/

.footer-menu {
  font-size: 0.625rem;
  text-transform: uppercase;
  line-height: 1rem;
  margin-bottom: 1rem;
}
.footer-menu-item {
  margin-left: 0.25rem;
  margin-right: 0.25rem;
  opacity: 0.8;
}
a.footer-menu-item:link, a.footer-menu-item:visited {
  color: var(--white);
  text-decoration: none;
  outline: 0;
  opacity: 0.8;
  -webkit-transition: all 0.4s ease-in-out;
  -moz-transition: all 0.4s ease-in-out;
  -ms-transition: all 0.4s ease-in-out;
  -o-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}
a.footer-menu-item:hover, a.footer-menu-item:active {
  color: var(--white);
  text-decoration: none;
  outline: 0;
  opacity: 1;
  -webkit-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -ms-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}


/*** ---------- Story page ---------- ***/

.back-btn {
  display: block;
  font-weight: 400;
  font-size: 0.9rem;
  text-align: right;
  z-index: 100;
  height: 30px;
  width: auto;
  line-height: 30px;
  text-transform: uppercase;
}
@media (min-width: 992px) {
  .back-btn {
    margin-right: 15px;
    margin-top: 15px;
  }
}
a.back-btn:link, a.back-btn:visited {
  color: var(--white);
  text-decoration: none;
  outline: 0;
  opacity: 0.5;
  -webkit-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -ms-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}
a.back-btn:hover, a.back-btn:active {
  color: var(--white);
  text-decoration: none;
  outline: 0;
  opacity: 1;
  -webkit-transition: all 0.4s ease-in-out;
  -moz-transition: all 0.4s ease-in-out;
  -ms-transition: all 0.4s ease-in-out;
  -o-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}
.back-icon {
  display: block;
  margin-left: 5px;
  text-align: center;
  width: 30px;
  height: 30px;
  font-size: 0.9rem;
  line-height: 28px !important;
  -webkit-border-radius: 15px;
  -moz-border-radius: 15px;
  border-radius: 15px;
  border-style: solid;
  border-width: 1px;
  border-color: var(--white);
}
.story-img {
  width: 100%;
  height: auto;
}
.testimonial-quote {
  font-weight: 400;
  font-style: italic;
  font-size: 1.5rem;
	line-height: 2rem;
  margin-bottom: 1.5rem;
}
@media (min-width: 1600px) {
  .testimonial-quote {
    font-size: 1.875rem;
    line-height: 2.5rem;
  }
}
.testimonial-name {
  font-weight: 800;
  text-transform: uppercase;
  font-size: 1rem;
	line-height: 1.125rem;
}
@media (min-width: 1600px) {
  .testimonial-name {
    font-size: 1.25rem;
    line-height: 1.5rem;
  }
}
