/*
Theme Name: Coddin Base Theme
Text Domain: cbt
Version: 1.0
Requires at least: 5.3
Requires PHP: 7.2
Description: Custom website theme for clients
Tags: coddin webdevelopment, custom theme
Author: Coddin Webdevelopment
Author URI: https://coddin.nl/
Theme URI: https://coddin.nl/project/
*/

.WIP {
  position: fixed;
  top: 105px;
  left: 0;
  right: 0;
  height: 40px;
  z-index: 99999;
  color: white;
  text-align: center;
  display: block;
}

.WIP h3 {
  background-color: rgba(0, 0, 0, 0.6);
}

#wpadminbar {
  display: none !important;
}

@font-face {
  font-family: "Bank Gothic";
  src: url("/wp-content/themes/midibaal/fonts/BankGothic.woff2") format("woff2");
}

h1,
h2,
h3,
h4,
h5,
p,
a {
  font-family: "Source Sans Pro", sans-serif;
}

.jtxt-second {
  color: #fde100 !important;
}

.jbtn {
  font-weight: 600;
  background-color: rgba(0, 0, 0, 0.6);
  padding: 10px 25px;
  border: 3px solid;
  -webkit-transition: ease all 0.3s;
  transition: ease all 0.3s;
}

@media only screen and (max-width: 768px) {
  .jbtn {
    padding: 5px 10px;
    font-size: 15px;
  }
}

.jbtn:hover {
  color: white;
  text-decoration: none;
}

.btn-green {
  color: #3c8826;
  border-color: #3c8826;
}

.btn-green:hover {
  background-color: #3c8826;
}

.btn-yellow {
  color: #fde100;
  border-color: #fde100;
}

.btn-yellow:hover {
  color: black;
  background-color: #fde100;
}

#site {
  min-height: 100vh;
  display: table;
  position: relative;
  width: 100%;
  overflow-x: hidden;
}

.wp-block {
  max-width: 1377px !important;
}

.title-block {
  position: relative;
  box-sizing: border-box;
  width: 100vw;
  max-width: 100vw;
  margin-left: -50vw;
  margin-right: -50vw;
  left: 50%;
  right: 50%;
  clear: both;
  text-align: center;
  background-color: #3c8826;
  padding: 15px;
}

.title-block h2 {
  font-size: 25px;
  text-transform: uppercase;
  color: #fde100;
  margin-bottom: 0;
  font-family: "Bank Gothic", serif;
  text-shadow: 1px 1px 4px #000, 0 0 15px #000;
}

@media only screen and (min-width: 768px) {
  .title-block h2 {
    font-size: 28px;
  }
}

@media only screen and (min-width: 992px) {
  .title-block h2 {
    font-size: 32px;
  }
}

header.header {
  z-index: 999;
  position: fixed;
  top: 0;
  background-color: #3c8826;
  width: 100%;
}

header.header .header-menu {
  display: -webkit-box;
  display: flex;
  height: 100%;
  -webkit-box-pack: end;
          justify-content: flex-end;
}

@media only screen and (max-width: 992px) {
  header.header .header-menu {
    display: none;
  }
}

header.header .header-menu div > ul {
  margin: 0;
  padding: 0;
}

header.header .header-menu div > ul li {
  list-style-type: none;
  display: inline-block;
}

header.header .header-menu div > ul li a {
  color: #fde100;
  font-size: 18px;
  -webkit-transition: 0.3s ease all;
  transition: 0.3s ease all;
}

header.header .header-menu div > ul li a:hover {
  color: white;
}

header.header .header-menu div > ul li ul.dropdown-menu {
  background-color: #3c8826;
  padding: 0;
  overflow: hidden;
}

header.header .header-menu div > ul li ul.dropdown-menu li {
  display: block;
}

header.header .header-menu div > ul li ul.dropdown-menu li a:hover {
  background-color: #fde100;
  color: #3c8826;
}

.toggle-nav {
  display: none;
}

@media only screen and (max-width: 992px) {
  .toggle-nav {
    display: block;
    color: #fde100;
  }

  .toggle-nav .hamburger {
    margin-left: auto;
    right: 40px;
    top: 28px;
    width: 25px;
    height: 15px;
    cursor: pointer;
    -webkit-transition: 0.5s ease-in-out;
    transition: 0.5s ease-in-out;
    -webkit-transform: rotate(0);
    transform: rotate(0);
  }

  .toggle-nav .hamburger span {
    position: absolute;
    left: 0;
    display: block;
    width: 100%;
    height: 3px;
    border-radius: 50px;
    background: #fde100;
    opacity: 1;
    -webkit-transition: 0.25s ease-in-out;
    transition: 0.25s ease-in-out;
    -webkit-transform: rotate(0);
    transform: rotate(0);
  }

  .toggle-nav .hamburger span:nth-child(1) {
    top: 0;
  }

  .toggle-nav .hamburger span:nth-child(2),
  .toggle-nav .hamburger span:nth-child(3) {
    top: 6px;
  }

  .toggle-nav .hamburger span:nth-child(4) {
    top: 12px;
  }

  .toggle-nav .hamburger.open span:nth-child(1) {
    top: 3px;
    left: 50%;
    width: 0;
  }

  .toggle-nav .hamburger.open span:nth-child(2) {
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
  }

  .toggle-nav .hamburger.open span:nth-child(3) {
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
  }

  .toggle-nav .hamburger.open span:nth-child(4) {
    top: 18px;
    left: 50%;
    width: 0;
  }
}

#mobile-menu {
  height: 100vh;
  width: 100vw;
  position: fixed;
  right: 0;
  bottom: 0;
  left: 0;
  background-color: #3c8826;
  padding-top: 130px;
  z-index: 99;
  -webkit-transform: translateX(100%);
          transform: translateX(100%);
  -webkit-transition: all ease 0.3s;
  transition: all ease 0.3s;
}

#mobile-menu.open {
  -webkit-transform: translateX(0);
          transform: translateX(0);
}

#mobile-menu .menu {
  list-style: none;
  margin: 0;
  padding: 0;
}

#mobile-menu .menu li {
  padding-bottom: 20px;
}

#mobile-menu .menu li a {
  color: #fde100;
  font-size: 24px;
}

#mobile-menu ul.dropdown-menu {
  background-color: #3c8826;
  padding: 0;
  overflow: hidden;
}

#mobile-menu ul.dropdown-menu li {
  display: block;
}

#mobile-menu ul.dropdown-menu li a:hover {
  background-color: #fde100;
  color: #3c8826;
}

@media only screen and (min-width: 992px) {
  #mobile-menu {
    display: none;
  }
}

.single-service section.hero {
  height: 35vh;
  background-position: center center;
}

.single-service section.hero .content h1 {
  text-transform: uppercase;
}

.single-service section.hero .content h3 {
  font-size: 22px;
  margin-bottom: -10px;
  text-shadow: 1px 1px 4px #000, 0 0 15px #000;
}

@media only screen and (min-width: 768px) {
  .single-service section.hero .content h3 {
    font-size: 28px;
    margin-bottom: -15px;
  }
}

.single-service section.hero .overlay {
  background-color: rgba(0, 0, 0, 0.1);
}

.single-service .service-info h3 {
  text-shadow: none;
}

.single-service .service-info .buttons {
  display: -webkit-box;
  display: flex;
  -webkit-box-pack: justify;
          justify-content: space-between;
}

.single-service .service-info .buttons .btn-green {
  background-color: unset;
}

.single-service .service-info .buttons .btn-green:hover {
  background-color: #3c8826;
}

footer.footer {
  background-color: #3c8826;
  position: relative;
  padding-top: 30px;
}

footer.footer ul {
  padding: 0;
  margin: 0;
}

footer.footer ul li {
  margin-bottom: 15px;
  list-style-type: none;
}

footer.footer ul li a {
  color: white;
  padding: 0;
  -webkit-transition: 0.5s ease all;
  transition: 0.5s ease all;
  text-decoration: none;
}

footer.footer ul li a:hover {
  color: #fde100;
}

footer.footer ul li a i {
  margin-right: 15px;
  color: #fde100;
}

.copyright {
  background-color: #337420;
  color: white;
}

.copyright p {
  margin: 0;
}

section.hero {
  position: relative;
  box-sizing: border-box;
  width: 100vw;
  max-width: 100vw;
  margin-left: -50vw;
  margin-right: -50vw;
  left: 50%;
  right: 50%;
  clear: both;
  position: relative;
  background-size: cover;
  background-position: top center;
}

@media only screen and (max-width: 768px) {
  section.hero {
    height: calc(50vh);
  }
}

section.hero .content-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  display: -webkit-box;
  display: flex;
  -webkit-box-pack: center;
          justify-content: center;
  -webkit-box-align: center;
          align-items: center;
}

@media only screen and (max-width: 400px) {
  section.hero .content-wrapper {
    padding-left: 10px;
    padding-right: 10px;
  }
}

section.hero .content-wrapper .content {
  color: white;
}

section.hero .content-wrapper .content h1 {
  font-size: 35px;
  text-shadow: 1px 1px 4px #000, 0 0 15px #000;
}

@media only screen and (min-width: 768px) {
  section.hero .content-wrapper .content h1 {
    font-size: 45px;
  }
}

@media only screen and (min-width: 992px) {
  section.hero .content-wrapper .content h1 {
    font-size: 64px;
  }
}

section.hero .content-wrapper .content h2 {
  font-size: 25px;
  color: #fde100;
  display: inline-block;
  text-shadow: 1px 1px 4px #000, 0 0 15px #000;
}

@media only screen and (min-width: 768px) {
  section.hero .content-wrapper .content h2 {
    font-size: 25px;
  }
}

@media only screen and (min-width: 992px) {
  section.hero .content-wrapper .content h2 {
    font-size: 28px;
  }
}

section.hero .content-wrapper .content .buttons {
  display: -webkit-box;
  display: flex;
  -webkit-box-pack: justify;
          justify-content: space-between;
}

section.hero .overlay {
  z-index: 1;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.3);
}

section.services {
  position: relative;
  box-sizing: border-box;
  width: 100vw;
  max-width: 100vw;
  margin-left: -50vw;
  margin-right: -50vw;
  left: 50%;
  right: 50%;
  clear: both;
}

section.services .content {
  z-index: 3;
  display: -webkit-box;
  display: flex;
  padding: 40px;
  -webkit-box-pack: justify;
          justify-content: space-between;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
          flex-direction: column;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
}

section.services .content img {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  z-index: 1;
}

section.services .content h2 {
  text-shadow: 1px 1px 4px #000, 0 0 15px #000;
  color: white;
}

section.services .content h4 {
  text-shadow: 1px 1px 4px #000, 0 0 15px #000;
  color: #fde100;
}

section.services .overlay {
  display: block;
  z-index: 2;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.1);
}

section.contact {
  margin-bottom: 20px;
}

section.contact .gform_wrapper form .gform_body ul {
  color: #3c8826 !important;
}

section.contact .gform_wrapper form .gform_body ul li input,
section.contact .gform_wrapper form .gform_body ul li textarea {
  border: #3c8826 solid 3px !important;
}

section.contact .gform_wrapper .gform_footer > .gform_button {
  font-weight: 600;
  background-color: rgba(0, 0, 0, 0.6);
  padding: 10px 25px;
  border: 3px solid;
  -webkit-transition: ease all 0.3s;
  transition: ease all 0.3s;
  color: #3c8826;
  border-color: #3c8826;
  background-color: unset;
}

section.contact .gform_wrapper .gform_footer > .gform_button:hover {
  color: white;
  text-decoration: none;
}

section.contact .gform_wrapper .gform_footer > .gform_button:hover {
  background-color: #3c8826;
}

