/*
Theme Name:        Soulbaze
Text Domain:	     Soulbaze
Version:           2.0.0
Requires at least: 5.0
Requires PHP:      5.6
Tested up to:      6.3
Description:       Soulbaze
Author:            Daniël
License:           GPLv2 or later
License URI:       https://www.gnu.org/licenses/gpl-2.0.html
*/

/* #Primary
================================================== */

@import url("https://fonts.googleapis.com/css?family=Poppins:100,100i,200,200i,300,300i,400,400i,500,500i,600,600i,700,700i,800,800i,900,900i&subset=devanagari,latin-ext");
@import url("https://fonts.googleapis.com/css?family=Montserrat:100,100i,200,200i,300,300i,400,400i,500,500i,600,600i,700,700i,800,800i,900,900i&subset=devanagari,latin-ext");
@import url("https://fonts.googleapis.com/css?family=Cardo:100,100i,200,200i,300,300i,400,400i,500,500i,600,600i,700,700i,800,800i,900,900i&subset=devanagari,latin-ext");
@import url("https://fonts.googleapis.com/css?family=PT Sans:100,100i,200,200i,300,300i,400,400i,500,500i,600,600i,700,700i,800,800i,900,900i&subset=devanagari,latin-ext");

html {
  scroll-behavior: smooth;
  scroll-padding-top: 120px;
}

body {
  font-family: "PT Sans", sans-serif;
  font-size: 16px;
  line-height: 24px;
  font-weight: 400;
  color: #212112;
  background-color: #fff;
  overflow-x: hidden;
  transition: all 200ms linear;
}

::selection {
  color: #fff;
  background-color: var(--theme-color);
}

::-moz-selection {
  color: #fff;
  background-color: var(--theme-color);
}

/* #Navigation
================================================== */

.start-header {
  opacity: 1;
  transform: translateY(0);
  padding: 20px 0;
  box-shadow: 0 5px 30px 0 rgb(0 0 0 / 60%);
  -webkit-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}

.navigation-wrap {
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 1000;
  -webkit-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}

.navbar {
  padding: 0;
}

.navbar-items {
  margin-left: 2vw;
  margin-right: 2vw;
}

.navbar-brand {
  background-image: var(--logo-url);
  background-position: center;
  background-size: cover;
  width: 270px;
  height: 60px;
}

.navbar-toggler {
  float: right;
  border: none;
  padding-right: 0;
}

.navbar-toggler:active,
.navbar-toggler:focus {
  outline: none;
}

.navbar-light .navbar-toggler-icon {
  width: 24px;
  height: 17px;
  background-image: none;
  position: relative;
  border-bottom: 1px solid #000;
  transition: all 300ms linear;
}

.navbar-light .navbar-toggler-icon:after,
.navbar-light .navbar-toggler-icon:before {
  width: 24px;
  position: absolute;
  height: 1px;
  background-color: #000;
  top: 0;
  left: 0;
  content: "";
  z-index: 2;
  transition: all 300ms linear;
}

.navbar-light .navbar-toggler-icon:after {
  top: 8px;
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon:after {
  transform: rotate(45deg);
}
.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon:before {
  transform: translateY(8px) rotate(-45deg);
}
.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon {
  border-color: transparent;
}

.nav-link {
  position: relative;
  padding: 5px 0 !important;
  display: inline-block;
  color: #212121 !important;
  font-weight: 500;
  transition: all 200ms linear;
}

.nav-item {
  position: relative;
  transition: all 200ms linear;
  font-size: 1.2rem;
}

.nav-item.active .nav-link,
.nav-item:hover .nav-link {
  color: var(--theme-color) !important;
}

.nav-item:after {
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 100%;
  height: 2px;
  content: "";
  background-color: var(--theme-color);
  opacity: 0;
  transition: all 200ms linear;
}

.nav-item:hover:after {
  bottom: 0;
  opacity: 1;
}

.nav-item.active:hover:after {
  opacity: 0;
}

/* #Primary style
================================================== */

.bg-light {
  background-color: #fff !important;
  transition: all 200ms linear;
}

h1 {
  font-size: 48px;
  line-height: 1.2;
  font-weight: 700;
  font-family: "Cardo";
}
h2 {
  font-family: "Cardo";
}
h3 {
  font-family: "Cardo";
}
h4 {
  font-family: "Cardo";
}
h5 {
  font-family: "Cardo";
}
h6 {
  font-family: "Montserrat", sans-serif;
}

p {
  margin: 0;
  padding-top: 10px;
}

.nav-item .dropdown-menu {
  transform: translate3d(0, 10px, 0);
  visibility: hidden;
  opacity: 0;
  max-height: 0;
  display: block;
  padding: 0;
  margin: 0;
  transition: all 200ms linear;
}

.nav-item.show .dropdown-menu {
  opacity: 1;
  visibility: visible;
  max-height: 999px;
  transform: translate3d(0, 0px, 0);
}

.dropdown-menu {
  padding: 10px !important;
  margin: 0;
  font-size: 13px;
  letter-spacing: 1px;
  color: #212121;
  background-color: #fcfaff;
  border: none;
  border-radius: 3px;
  box-shadow: 0 5px 10px 0 rgba(138, 155, 165, 0.15);
  transition: all 200ms linear;
}

.dropdown-toggle::after {
  display: none;
}

.dropdown-item {
  padding: 3px 15px;
  color: #212121;
  border-radius: 2px;
  transition: all 200ms linear;
}

.dropdown-item:hover,
.dropdown-item:focus {
  color: #fff;
  background-color: rgba(129, 103, 169, 0.6);
}

/* #Media
================================================== */

@media (max-width: 767px) {
  h1 {
    font-size: 38px;
  }
  .nav-item:after {
    display: none;
  }
  .nav-item::before {
    position: absolute;
    display: block;
    top: 15px;
    left: 0;
    width: 11px;
    height: 1px;
    content: "";
    border: none;
    background-color: #000;
    vertical-align: 0;
  }
  .dropdown-toggle::after {
    position: absolute;
    display: block;
    top: 10px;
    left: -23px;
    width: 1px;
    height: 11px;
    content: "";
    border: none;
    background-color: #000;
    vertical-align: 0;
    transition: all 200ms linear;
  }
  .dropdown-toggle[aria-expanded="true"]::after {
    transform: rotate(90deg);
    opacity: 0;
  }
  .dropdown-menu {
    padding: 0 !important;
    background-color: transparent;
    box-shadow: none;
    transition: all 200ms linear;
  }
  .dropdown-toggle[aria-expanded="true"] + .dropdown-menu {
    margin-top: 10px !important;
    margin-bottom: 20px !important;
  }
  #over-ons .contact-card {
    margin-top: 375px;
  }
  #over-ons .contact-card .col-3 {
    height: 300px;
    position: absolute;
    top: -300px;
  }
}

/* #Sections
================================================== */

.section {
  position: relative;
  width: 100%;
  display: block;
}

.section:not(#header) {
  font-size: 1.1rem;
  padding-top: 10vh;
}

.section#header {
  background-color: var(--background-color);
  min-height: 100vh;
}

.section#header .header-text {
  padding-top: 150px;
  padding-bottom: 50px;
  padding-left: 5%;
  padding-right: 12%;
  font-size: 1.2rem;
}

.section#header .header-text p {
  padding-bottom: 25px;
}

.section#header .header-text h1 {
  padding-bottom: 25px;
}

.section#header .header-text h2,
.section#header .header-text h3,
.section#header .header-text h4,
.section#header .header-text h5 {
  padding-bottom: 3px;
  font-size: 1.2rem;
  margin: 0;
  padding-top: 10px;
  font-family: "Montserrat", sans-serif;
}

.section#header .header-image {
  height: auto;
}

.section#header .header-image .header-img {
  width: 100%;
  height: 100%;
  min-height: 100vh;
  position: relative;
  background-image: var(--header-url);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

.section#header a,
.section#programma .section-text-two a,
.section#contact button {
  position: relative;
  text-decoration: none;
  background-color: var(--theme-color);
  color: #fff !important;
  margin-top: 20px;
  padding: 20px 40px;
  transition: all 0.4s;
  align-items: center;
  display: flex;
  width: max-content;
  max-width: 100%;
  border: 0;
  border-radius: 0;
}

.section#header a:hover,
.section#programma .section-text-two a:hover,
.section#contact button:hover {
  filter: brightness(0.85) !important;
}

.section#header a i,
.section#programma .section-text-two a i,
.section#header a svg,
.section#programma .section-text-two a svg,
.section#contact button i,
.section#contact button svg {
  margin-left: 10px;
}

.section#notFound {
  padding-top: 100px;
  height: calc(100vh - 100px);
}

.section#notFound .container {
  padding-top: 10vh;
}

.section#contact {
  margin-top: 100px;
  padding: 0;
  min-height: calc(100vh - 100px);
  background: var(--contact-background-url);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

.section#contact .contact-card-two {
  padding: 5vh 5vw;
}

.section#contact .contact-card-two .container {
  background: white;
  opacity: 90%;
  padding: 5vh 5vw;
}

.section .container:not(.last)::after {
  content: "";
  height: 1px;
  background-image: linear-gradient(to right, white, silver, white);
  display: block;
  margin-top: 10vh;
}

.section .container.last {
  padding-bottom: 10vh;
}

.section ul {
  margin-top: 20px;
}

.section li {
  margin-top: 10px;
}

.section h1 {
  padding-bottom: 20px;
}

.section h2 {
  padding-bottom: 20px;
  padding-top: 75px;
}

.section#programma h2 {
  font-size: 48px;
  line-height: 1.2;
  font-weight: 700;
  color: #212112;
}

.section#over-ons h4 {
  font-size: 2rem;
}

.section .card {
  border-radius: 0 !important;
  margin-top: 75px;
  border-width: 1px;
  border-color: rgba(0, 0, 0, 0);
  border-left-width: 3px;
  border-left-color: var(--theme-color);
  background-color: var(--background-color);
}

.section .card h1 {
  font-size: 1.8rem;
  padding-bottom: 0.8rem;
}

.section .card p {
  padding-top: 20px;
}

.section .card p.first {
  padding-top: 0;
}

.section .contact-card {
  border: 0;
  margin-top: 75px;
  background-color: var(--background-color);
}

.section .contact-card h1 {
  font-size: 1.8rem;
  padding-bottom: 0.8rem;
}

.section .contact-card p {
  padding-top: 20px;
}

.section .contact-card p.first {
  padding-top: 0;
}

.section .contact-card a:hover {
  color: #4e4e4e;
}

.section .contact-card .card-body {
  padding: 40px;
}

.section:not(#header) .container {
  padding-left: 5vw;
  padding-right: 5vw;
}

.section .container .section-text p,
.section .container .section-text-two p {
  margin-bottom: 20px;
}

.section .container .section-text a,
.section .container .section-text-two a {
  text-decoration: none;
  color: #000;
}

.section .container .section-text a:hover,
.section .container .section-text-two a:hover {
  text-decoration: none;
  color: #000;
}

.section .card .card-image {
  height: 100%;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

.section .card a {
  text-decoration: none;
  color: #000;
  display: block;
  width: 100%;
  line-height: 2rem;
}

.section .card i,
.section .card svg {
  margin-right: 5px;
}

button.navbar-toggler {
  margin-right: 10px;
}

footer {
  background-color: var(--background-color) !important;
}

footer a {
  text-decoration: none !important;
  color: #6c757d !important;
}

footer a:hover {
  text-decoration: none !important;
  color: #494d52 !important;
}

footer a i,
footer a svg {
  margin-right: 5px;
}

footer > section > div > a > svg {
  font-size: 1.5rem;
}

footer .footer-logo {
  width: 250px;
}

.image-zoom {
  overflow: hidden;
  -webkit-transform: translate3d(0, 0, 0);
  height: 100%;
}
.image-zoom .image-zoom-img {
  opacity: 1;
  transition: opacity 1s, transform 1s;
}
.image-zoom:hover .image-zoom-img {
  opacity: 0.9;
  transform: scale3d(1.1, 1.1, 1);
}

footer .footer-company {
  border-right: 1px solid #dee2e6 !important;
}

.carousel {
  margin-top: 75px;
}

.carousel-indicators {
  bottom: -3.5rem;
}

.carousel-indicators li {
  background-color: #b5b5b5;
}

.carousel-inner .slider-img {
  width: 100%;
  height: 143px;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}

#contact-form input,
#contact-form textarea {
  border: 0;
  border-radius: 0;
  padding: 1.5rem;
  background-color: var(--background-color);
  color: #495057;
}

#contact-form input:focus,
#contact-form textarea:focus {
  color: #000;
}

#contact-form button {
  font-size: 1.1rem;
}

.alert.alert-danger,
.alert.alert-success {
  border-radius: 0;
}

@media only screen and (max-width: 767px) {
  /* For mobile phones: */
  [class*="col-"] {
    width: 100% !important;
    max-width: 100% !important;
    flex: none !important;
  }

  .col-3.slider-image {
    width: 50% !important;
    max-width: 50% !important;
    padding: 0;
  }

  .section#header {
    height: auto !important;
    padding-top: 6%;
  }

  .section .header-img {
    width: 100% !important;
    min-height: 300px !important;
    box-shadow: inset 0px 1px 10px #000, inset 0px -1px 5px #000;
  }

  .row {
    max-width: 100% !important;
    margin-right: 0 !important;
    margin-left: 0 !important;
  }

  .section#header a,
  .section#programma .section-text-two a {
    padding: 20px 30px;
  }

  #over-ons .card .col-3 {
    padding: 0 !important;
  }
}

@media only screen and (max-width: 1199px) {
  footer .footer-company {
    border-right: 0 !important;
    border-bottom: 1px solid #dee2e6 !important;
    padding-bottom: 60px !important;
    margin-bottom: 60px !important;
  }

  .section .card .col-3 {
    -ms-flex: 0 0 33.333333%;
    flex: 0 0 33.333333%;
    max-width: 33.333333%;
  }

  .section .card .col-9 {
    -ms-flex: 0 0 66.666667%;
    flex: 0 0 66.666667%;
    max-width: 66.666667%;
  }
}
