/* ---------------------------------------------
Table of contents
------------------------------------------------
01. font & reset css
02. reset
03. global styles
04. header
05. banner
06. features
07. testimonials
08. contact
09. footer
10. preloader
11. search
12. portfolio

--------------------------------------------- */
/* 
---------------------------------------------
font & reset css
--------------------------------------------- 
*/
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500;600;700;800;900&display=swap');
/* 
---------------------------------------------
reset
--------------------------------------------- 
*/
@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@100&display=swap');
  :root {
    --color-maintext: #6A5F50;
    --color-orange:#c5799b;
    --color-dark-orange:  #E16734;
    --color-dark-orange:  #c5799b;
    --color-white: #fff;
    --color-gray: rgb(112,111,111);
    --color-taupe: #6A5F50;
  }

@font-face {
  font-family: 'Avenir';
  src:url("../fonts/Avenir-Light.ttf") format('truetype');
}
@font-face {
  font-family: 'LeagueSpartan';
  src:url("../fonts/LeagueSpartan-VariableFont_wght.ttf") format('truetype');
}

html {
    scroll-behavior: smooth;
}

html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, div
pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, font, img, ins, kbd, q,
s, samp, small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li,
figure, header, nav, section, article, aside, footer, figcaption {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
}

/* clear fix */
.grid:after {
  content: '';
  display: block;
  clear: both;
}

/* ---- .grid-item ---- */

.grid-sizer,
.grid-item {
  width: 50%;
}

.grid-item {
  float: left;
}

.grid-item img {
  display: block;
  max-width: 100%;
}

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

.clearfix {
  display: inline-block;
}

html[xmlns] .clearfix {
  display: block;
}

* html .clearfix {
  height: 1%;
}

ul, li {
  padding: 0;
  margin: 0;
}

header, nav, section, article, aside, footer, hgroup {
  display: block;
}

* {
  box-sizing: border-box;
}

html, body {
  font-family: 'Poppins', sans-serif;
  font-weight: 400;
  background-color: var(--color-white);
  -ms-text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

#page-container{
  position: relative;
  min-height: 100vh;
}

em{
  color: var(--color-taupe);
  font-style: normal;
}
span{
  color: var(--color-orange);
}

a {
  text-decoration: none !important;
  color: var(--color-dark-orange);
}

h1, h2, h3, h4, h5, h6 {
  margin-top: 0px;
  margin-bottom: 0px;
}

h1 {
  color: var(--color-orange);
}


ul {
  margin-bottom: 0px;
}

p {
  font-size: 15px;
  line-height: 30px;
  color: var(--color-maintext);
}

img {
  width: 100%;
  overflow: hidden;
}

/* 
---------------------------------------------
global styles
--------------------------------------------- 
*/
html,
body {
  background: var(--color-white);
  font-family: 'Poppins', sans-serif;
}

::selection {
  background: var(--color-taupe);
  color: var(--color-white);
}

::-moz-selection {
  background: var(--color-taupe);
  color: var(--color-white);
}

@media (max-width: 991px) {
  html, body {
    overflow-x: hidden;
  }
  .mobile-top-fix {
    margin-top: 30px;
    margin-bottom: 0px;
  }
  .mobile-bottom-fix {
    margin-bottom: 30px;
  }
  .mobile-bottom-fix-big {
    margin-bottom: 60px;
  }
}

.section{
  margin-top: 60px;
}

.page-section {
  margin-top: 120px;
}

.section-heading h4, h6{
  color: var(--color-maintext);
}
.section-heading h2 {
  font-size: 30px;
  color: var(--color-maintext);
  font-weight: 700;
  letter-spacing: 0.25px;
  position: relative;
  z-index: 2;
  line-height: 44px;
}

.section-heading em {
  font-style: normal;
  color: var(--color-taupe);
}

.section-heading span {
  color: var(--color-orange);
}

.main-blue-button a {
  display: inline-block;
  background-color: var(--color-orange);
  font-size: 24px;
  font-weight: 400;
  color: var(--color-white);
  padding: 12px 25px;
  border-radius: 23px;
  letter-spacing: 0.25px;
}

.main-blue-button a:hover{
  background-color: var(--color-taupe);
}

.main-red-button a {
  display: inline-block;
  background-color: var(--color-orange);
  font-size: 15px;
  font-weight: 400;
  color: var(--color-white);
  padding: 12px 25px;
  border-radius: 23px;
  letter-spacing: 0.25px;
}

.main-white-button a {
  display: inline-block;
  background-color: var(--color-white);
  font-size: 15px;
  font-weight: 400;
  color: var(--color-orange);
  padding: 12px 25px;
  border-radius: 23px;
  letter-spacing: 0.25px;
}

/* 
---------------------------------------------
header
--------------------------------------------- 
*/
#foto {
  margin-bottom: -80px;
}

#foto img{
  border-radius: 50px;
}

.background-header {
  background-color: var(--color-taupe)!important;
  height: 80px!important;
  position: fixed!important;
  top: 0px;
  left: 0px;
  right: 0px;
  box-shadow: 0 2px 28px 0 rgba(0, 0, 0, 0.06);
}

.background-header .logo,
.background-header .main-nav .nav li a {
  color: var(--color-white)!important;
}

.background-header .main-nav .nav li:hover a {
  color: var(--color-orange)!important;
}

.background-header .nav li a.active {
  color: var(--color-orange)!important;
}

.header-area {
  background-color: var(--color-taupe);
  position: sticky;
  top: 0px;
  left: 0px;
  right: 0px;
  z-index: 100;
  height: 100px;
  -webkit-transition: all .5s ease 0s;
  -moz-transition: all .5s ease 0s;
  -o-transition: all .5s ease 0s;
  transition: all .5s ease 0s;
}

.header-area .main-nav {
  min-height: 80px;
  background: transparent;
}

.header-area .main-nav .logo {
  line-height: 100px;
  color: var(--color-white);
  font-family: 'LeagueSpartan';
  font-size: 24px;
  letter-spacing: -0.5px;
  float: left;
  -webkit-transition: all 0.3s ease 0s;
  -moz-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}

.header-area .main-nav .logo h4 {
    font-size: 40px;
    font-weight: bold;
    color: var(--color-white);
    line-height: 100px;
    float: left;
    -webkit-transition: all 0.3s ease 0s;
    -moz-transition: all 0.3s ease 0s;
    -o-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
}

.logo h4 span {
  color: var(--color-orange);
}

.background-header .main-nav .logo h4 {
  line-height: 80px;
}

.background-header .main-nav .nav {
  margin-top: 20px !important;
}

.header-area .main-nav .nav {
  float: right;
  margin-top: 30px;
  margin-right: 0px;
  background-color: transparent;
  -webkit-transition: all 0.3s ease 0s;
  -moz-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  position: relative;
  z-index: 999;
}

.header-area .main-nav .nav li {
  padding-left: 15px;
  padding-right: 15px;
}

.header-area .main-nav .nav li:last-child {
  padding-right: 0px;
  padding-left: 30px;
}

.header-area .main-nav .nav li:last-child a ,
.background-header .main-nav .nav li:last-child a {
  color: var(--color-white) !important;
  padding: 0px 20px;
  font-weight: 400;
}

.header-area .main-nav .nav li:last-child a:hover,
.header-area .main-nav .nav li:last-child a.active {
  color: var(--color-white) !important;
}

.header-area .main-nav .nav li a {
  display: block;
  font-weight: 500;
  font-size: 15px;
  color: var(--color-white);
  -webkit-transition: all 0.3s ease 0s;
  -moz-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  height: 40px;
  line-height: 40px;
  border: transparent;
  letter-spacing: 1px;
}


.header-area .main-nav .nav li:hover a,
.header-area .main-nav .nav li a.active {
  color: var(--color-orange)!important;
}

.background-header .main-nav .nav li:hover a,
.background-header .main-nav .nav li a.active {
  color: var(--color-orange)!important;
  opacity: 1;
}

.header-area .main-nav .nav li:last-child a:hover ,
.background-header .main-nav .nav li:last-child a:hover {
  background-color: var(--color-dark-orange);
}

.header-area .main-nav .nav li.submenu {
  position: relative;
  padding-right: 30px;
}

.header-area .main-nav .nav li.submenu:after {
  font-family: FontAwesome;
  content: "\f107";
  font-size: 12px;
  color: var(--color-maintext);
  position: absolute;
  right: 18px;
  top: 12px;
}

.background-header .main-nav .nav li.submenu:after {
  color: var(--color-maintext);
}

.header-area .main-nav .nav li.submenu ul {
  position: absolute;
  width: 200px;
  box-shadow: 0 2px 28px 0 rgba(0, 0, 0, 0.06);
  overflow: hidden;
  top: 50px;
  opacity: 0;
  transform: translateY(+2em);
  visibility: hidden;
  z-index: -1;
  transition: all 0.3s ease-in-out 0s, visibility 0s linear 0.3s, z-index 0s linear 0.01s;
}

.header-area .main-nav .nav li.submenu ul li {
  margin-left: 0px;
  padding-left: 0px;
  padding-right: 0px;
}

.header-area .main-nav .nav li.submenu ul li a {
  opacity: 1;
  display: block;
  background: var(--color-white);
  color: var(--color-white)!important;
  padding-left: 20px;
  height: 40px;
  line-height: 40px;
  -webkit-transition: all 0.3s ease 0s;
  -moz-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  position: relative;
  font-size: 13px;
  font-weight: 400;
  border-bottom: 1px solid #eee;
}

.header-area .main-nav .nav li.submenu ul li a:hover {
  background: var(--color-white);
  color: var(--color-orange)!important;
  padding-left: 25px;
}

.header-area .main-nav .nav li.submenu ul li a:hover:before {
  width: 3px;
}

.header-area .main-nav .nav li.submenu:hover ul {
  visibility: visible;
  opacity: 1;
  z-index: 1;
  transform: translateY(0%);
  transition-delay: 0s, 0s, 0.3s;
}

.header-area .main-nav .menu-trigger {
  cursor: pointer;
  display: block;
  position: absolute;
  top: 33px;
  width: 32px;
  height: 40px;
  text-indent: -9999em;
  z-index: 99;
  right: 40px;
  display: none;
}

.background-header .main-nav .menu-trigger {
  top: 23px;
}

.header-area .main-nav .menu-trigger span,
.header-area .main-nav .menu-trigger span:before,
.header-area .main-nav .menu-trigger span:after {
  -moz-transition: all 0.4s;
  -o-transition: all 0.4s;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
  background-color: #1e1e1e;
  display: block;
  position: absolute;
  width: 30px;
  height: 2px;
  left: 0;
}

.background-header .main-nav .menu-trigger span,
.background-header .main-nav .menu-trigger span:before,
.background-header .main-nav .menu-trigger span:after {
  background-color: #1e1e1e;
}

.header-area .main-nav .menu-trigger span:before,
.header-area .main-nav .menu-trigger span:after {
  -moz-transition: all 0.4s;
  -o-transition: all 0.4s;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
  background-color: #1e1e1e;
  display: block;
  position: absolute;
  width: 30px;
  height: 2px;
  left: 0;
  width: 75%;
}

.background-header .main-nav .menu-trigger span:before,
.background-header .main-nav .menu-trigger span:after {
  background-color: #1e1e1e;
}

.header-area .main-nav .menu-trigger span:before,
.header-area .main-nav .menu-trigger span:after {
  content: "";
}

.header-area .main-nav .menu-trigger span {
  top: 16px;
}

.header-area .main-nav .menu-trigger span:before {
  -moz-transform-origin: 33% 100%;
  -ms-transform-origin: 33% 100%;
  -webkit-transform-origin: 33% 100%;
  transform-origin: 33% 100%;
  top: -10px;
  z-index: 10;
}

.header-area .main-nav .menu-trigger span:after {
  -moz-transform-origin: 33% 0;
  -ms-transform-origin: 33% 0;
  -webkit-transform-origin: 33% 0;
  transform-origin: 33% 0;
  top: 10px;
}

.header-area .main-nav .menu-trigger.active span,
.header-area .main-nav .menu-trigger.active span:before,
.header-area .main-nav .menu-trigger.active span:after {
  background-color: transparent;
  width: 100%;
}

.header-area .main-nav .menu-trigger.active span:before {
  -moz-transform: translateY(6px) translateX(1px) rotate(45deg);
  -ms-transform: translateY(6px) translateX(1px) rotate(45deg);
  -webkit-transform: translateY(6px) translateX(1px) rotate(45deg);
  transform: translateY(6px) translateX(1px) rotate(45deg);
  background-color: #1e1e1e;
}

.background-header .main-nav .menu-trigger.active span:before {
  background-color: #1e1e1e;
}

.header-area .main-nav .menu-trigger.active span:after {
  -moz-transform: translateY(-6px) translateX(1px) rotate(-45deg);
  -ms-transform: translateY(-6px) translateX(1px) rotate(-45deg);
  -webkit-transform: translateY(-6px) translateX(1px) rotate(-45deg);
  transform: translateY(-6px) translateX(1px) rotate(-45deg);
  background-color: #1e1e1e;
}

.background-header .main-nav .menu-trigger.active span:after {
  background-color: #1e1e1e;
}

.header-area.header-sticky {
  min-height: 80px;
}

.header-area .nav {
  margin-top: 30px;
}

.header-area.header-sticky .nav li a.active {
  color: var(--color-orange);
}



@media (max-width: 400px) {
  .header-area .main-nav .logo h4{
    font-size: 20px;
  }
}
@media (max-width: 1200px) {
  .header-area .main-nav .nav li {
    padding-left: 12px;
    padding-right: 12px;
  }
  .header-area .main-nav:before {
    display: none;
  }
}

@media (max-width: 1200px) {

  .header-area .main-nav .nav li:nth-child(6),
  .background-header .main-nav .nav li:nth-child(6) {
    padding-right: 0px;
  }
}

@media (max-width: 1200px) {
  .background-header .main-nav .nav {
    margin-top: 80px !important;
  }
  .header-area .main-nav .logo {
    color: #1e1e1e;
  }
  .header-area.header-sticky .nav li a:hover,
  .header-area.header-sticky .nav li a.active {
    color: var(--color-orange)!important;
    opacity: 1;
  }
  .header-area.header-sticky .nav li.search-icon a {
    width: 100%;
  }
  .header-area {
    background-color: var(--color-taupe);
    padding: 0px 15px;
    height: 100px;
    box-shadow: 0 2px 28px 0 rgba(0, 0, 0, 0.06);
    text-align: center;
  }
  .header-area .container {
    padding: 0px;
  }
  .header-area .logo {
    margin-left: 0px;
  }
  .header-area .menu-trigger {
    display: block !important;
  }
  .header-area .main-nav {
    overflow: hidden;
  }
  .header-area .main-nav .nav {
    float: none;
    width: 100%;
    display: none;
    -webkit-transition: all 0s ease 0s;
    -moz-transition: all 0s ease 0s;
    -o-transition: all 0s ease 0s;
    transition: all 0s ease 0s;
    margin-left: 0px;
  }
  .background-header .nav {
    margin-top: 80px;
  }
  .header-area .main-nav .nav li:first-child {
    border-top: 1px solid #eee;
  }
  .header-area.header-sticky .nav {
    margin-top: 100px;
  }
  .header-area .main-nav .nav li {
    width: 100%;
    background: var(--color-white);
    border-bottom: 1px solid #e7e7e7;
    padding-left: 0px !important;
    padding-right: 0px !important;
  }
  .header-area .main-nav .nav li a {
    height: 50px !important;
    line-height: 50px !important;
    padding: 0px !important;
    border: none !important;
    background: #FFFFFF !important;
    color: var(--color-maintext) !important;
  }
  .header-area .main-nav .nav li:last-child a ,
  .background-header .main-nav .nav li:last-child a {
    color: var(--color-maintext) !important;
    padding: 0px 20px;
}

  .header-area .main-nav .nav li:last-child a:hover,
  .header-area .main-nav .nav li:last-child a.active {
    color: var(--color-orange) !important;
}
  .header-area .main-nav .nav li a:hover {
    background: #eee !important;
    color: var(--color-orange)!important;
  }
  .header-area .main-nav .nav li.submenu ul {
    position: relative;
    visibility: inherit;
    opacity: 1;
    z-index: 1;
    transform: translateY(0%);
    transition-delay: 0s, 0s, 0.3s;
    top: 0px;
    width: 100%;
    box-shadow: none;
    height: 0px;
  }
  .header-area .main-nav .nav li.submenu ul li a {
    font-size: 12px;
    font-weight: 400;
  }
  .header-area .main-nav .nav li.submenu ul li a:hover:before {
    width: 0px;
  }
  .header-area .main-nav .nav li.submenu ul.active {
    height: auto !important;
  }
  .header-area .main-nav .nav li.submenu:after {
    color: #3B566E;
    right: 25px;
    font-size: 14px;
    top: 15px;
  }
  .header-area .main-nav .nav li.submenu:hover ul, .header-area .main-nav .nav li.submenu:focus ul {
    height: 0px;
  }
}

@media (min-width: 1200px) {
  .header-area .main-nav .nav {
    display: flex !important;
  }
}



/* 
---------------------------------------------
preloader
--------------------------------------------- 
*/

.js-preloader {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: var(--color-white);
    display: -webkit-box;
    display: flex;
    -webkit-box-align: center;
    align-items: center;
    -webkit-box-pack: center;
    justify-content: center;
    opacity: 1;
    visibility: visible;
    z-index: 9999;
    -webkit-transition: opacity 0.25s ease;
    transition: opacity 0.25s ease;
}

.js-preloader.loaded {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

@-webkit-keyframes dot {
    50% {
        -webkit-transform: translateX(96px);
        transform: translateX(96px);
    }
}

@keyframes dot {
    50% {
        -webkit-transform: translateX(96px);
        transform: translateX(96px);
    }
}

@-webkit-keyframes dots {
    50% {
        -webkit-transform: translateX(-31px);
        transform: translateX(-31px);
    }
}

@keyframes dots {
    50% {
        -webkit-transform: translateX(-31px);
        transform: translateX(-31px);
    }
}

.preloader-inner {
    position: relative;
    width: 142px;
    height: 40px;
    background: var(--color-white);
}

.preloader-inner .dot {
    position: absolute;
    width: 16px;
    height: 16px;
    top: 12px;
    left: 15px;
    background: var(--color-orange);
    border-radius: 50%;
    -webkit-transform: translateX(0);
    transform: translateX(0);
    -webkit-animation: dot 2.8s infinite;
    animation: dot 2.8s infinite;
}

.preloader-inner .dots {
    -webkit-transform: translateX(0);
    transform: translateX(0);
    margin-top: 12px;
    margin-left: 31px;
    -webkit-animation: dots 2.8s infinite;
    animation: dots 2.8s infinite;
}

.preloader-inner .dots span {
    display: block;
    float: left;
    width: 16px;
    height: 16px;
    margin-left: 16px;
    background: var(--color-orange);
    border-radius: 50%;
}



/* 
---------------------------------------------
Banner Style
--------------------------------------------- 
*/

.main-banner {
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  padding: 160px 0px 100px 0px;
  /*position: relative;*/
  overflow: hidden;
}

/* .main-banner:after {
  content: '';
  background-image: url(../images/baner-dec-left.png);
  background-repeat: no-repeat;
  position: absolute;
  left: 0;
  top: 100px;
  width: 193px;
  height: 467px;
}

.main-banner:before {
  content: '';
  background-image: url(../images/baner-dec-right.png);
  background-repeat: no-repeat;
  position: absolute;
  right: 0;
  top: 100px;
  width: 98px;
  height: 290px;
} */

.main-banner .left-content {
  margin-right: 45px;
}

.main-banner .left-content h6 {
  text-transform: uppercase;
  font-size: 18px;
  color: var(--color-orange);
  margin-bottom: 15px;
}

.main-banner .left-content h1{
  font-family: 'LeagueSpartan', Poppins;
  font-size: 60px;
  font-weight: bolder;
}


.main-banner .left-content h2 {
  font-family: 'LeagueSpartan', Poppins;
  font-size: 50px;
  font-weight: 700;
  color: var(--color-maintext);
  line-height: normal;
}

.main-banner .left-content h2 span{
  color: var(--color-orange);
}



.main-banner .left-content p {
  font-size: 18px;
  margin: 20px 0px;
}

.main-banner .left-content form {
  margin-top: 0px;
  width: 500px;
  height: 80px;
  position: relative;
}

.main-banner .left-content form button {
  position: absolute;
  right: 10px;
  top: 8px;
  display: inline-block;
  background-color: var(--color-white);
  font-size: 20px;
  font-weight: 500;
  color: var(--color-orange);
  padding: 0px 15px;
  border-radius: 40px;
  letter-spacing: 0.25px;
  outline: none;
  border: 2px solid var(--color-orange);
}

.main-banner .left-content form input {
  width: 470px;
  height: 66px;
  background-color: var(--color-orange);
  border-radius: 33px;
  border: none;
  outline: none;
  padding: 0px 25px;
  color: var(--color-white);
  letter-spacing: 0.25px;
  font-size: 20px;
  font-weight: 300;
}

.main-banner .left-content form input::placeholder {
  color: var(--color-white);
}

/*
--------------------------------------------------------------
 POPUP
--------------------------------------------------------------
*/

.popup {
  display: none;
  color: var(--color-white);
  position: fixed;
  z-index: 999;
  height: 300px;
  width: 200px;
  top: 80%;
  left: 90%;
  transform: translate(-50%, -50%);
  background-color: var(--color-taupe);
  padding: 20px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.3);
}

.popup-content {
  text-align: center;
}

.popup-content .popuplink{
  color: var(--color-white) !important;
  margin-bottom: 10px;
}

.popup-content .popuplink:hover{
  color: var(--color-dark-orange) !important;

}
.close-btn {
  position: absolute;
  top: 10px;
  right: 10px;
  font-size: 20px;
  cursor: pointer;
}

.content {

  height: 200vh; /* Adjust the height as needed */
}

@media (max-width: 992px) {
  .popup {
    display: none !important;
  }
}


/* 
---------------------------------------------
About Us Style
--------------------------------------------- 
*/

#about {
  margin-top: 100px;
}

.about-us {  
  background-image: url(../images/gradientTaupeWaves.svg);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  padding: 260px 0px 190px 0px;
}

.about-us .left-image {
  margin-right: 45px;
}

.about-us .services .item {
  margin-bottom: 30px;
}

.about-us .services .item .icon {
  float: left;
  margin-right: 20px;
}

.about-us .services .item .icon img {
  width: 30px;
  height: 30px;
  border-radius: 15px;
}

.about-us .services .item h1{
  color: var(--color-white);
  text-align: center;
  font-weight: 700;
  font-size: 50;
  margin-bottom: 20px;
}


.about-us .services .item h2 {
  color: var(--color-white);
  font-weight: 700;
}
.about-us .services .item h3{
  color: var(--color-white);
  font-weight: 700;
}




.about-us .services .item .right-text{
  margin-left: 50px;
}


.about-us .services .item .right-text a h3:hover{
  color: var(--color-orange);
}

.about-us .services .item h4 {
  color: var(--color-white);
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 60px;
}

.about-us .services .item p {
  color: var(--color-white);
}




/* 
---------------------------------------------
Services Style
--------------------------------------------- 
*/

.our-services {
  margin-top: 200px;
}

.our-services .left-image {
  margin-right: 45px;
  margin-top: 30px;
}

.our-services .section-heading h2 {
  margin-right: 92px;
}


.our-services .section-heading p {
  margin-top: 30px;
  margin-bottom: 60px;
  font-weight: 500;
}



/* 
---------------------------------------------
Portfolio
--------------------------------------------- 
*/

.our-portfolio {
  padding-top: 100px;
  margin-top: 100px;
}

.profile-block {
 margin-bottom: 50px;
}

.our-portfolio .section-heading h2 {
  text-align: center;
  margin: 0px 50px 0px 50px;
  position: relative;
  z-index: 1;
}

.our-portfolio .section-heading .sub-tit-verkozenen {  
  margin-bottom: 30px !important;
}


.our-portfolio .section-heading p {
  text-align: center;
  margin: 0px 50px 100px 50px;
  position: relative;
  z-index: 1;
  font-weight: 500;
}
.our-portfolio .item {
  position: relative;
}

/* .our-portfolio .item:hover .hidden-content {
  top: -100px;
  opacity: 1;
  visibility: visible;
}

.our-portfolio .item:hover .showed-content {
  top: 70px;
}

.our-portfolio .hidden-content {
  background: var(--color-dark-orange);
  background: linear-gradient(180deg, var(--color-white) 0%, var(--color-orange) 80%);
  padding: 15px;
  border-radius: 20px;
  text-align: center;
  opacity: 0;
  top: 0;
  visibility: hidden;
  position: absolute;
  z-index: 2;
  transition: all 0.5s;
}

.our-portfolio .hidden-content:after {
  width: 20px;
  height: 20px;
  position: absolute;
  background: var(--color-orange);
  content: '';
  left: 50%;
  bottom: -8px;
  margin-left: -5px;
  transform: rotate(45deg);
  background: linear-gradient(105deg, var(--color-dark-orange) 0%, var(--color-orange) 100%);
  z-index: 10;
}

.our-portfolio .hidden-content h4 {
  font-size: 28px;
  font-weight: 700;
  color: var(--color-orange);
  margin-bottom: 5px;
}

.our-portfolio .hidden-content h4 em{
  font-style: normal;
  font-size: 28px;
  font-weight: 700;
  color: var(--color-taupe);


}  
.our-portfolio .hidden-content p {
  color: var(--color-white);
  font-size: 14px;
}

.our-portfolio .showed-content {
  top: 0px;
  position: relative;
  z-index: 3;
  background-color: var(--color-white);
  text-align: center;
  padding: 0px;
  border-radius: 0px;
  box-shadow: 0px 0px 10px rgba(0,0,0,0.1);
  transition: all 0.5s;
}

.our-portfolio .showed-content img {
  max-width: 300px;
} */

.button-wieiswie{
  margin-top: 125px;
  text-align: center;

}



/* 
---------------------------------------------
Lijstkandidaten
--------------------------------------------- 
*/
.our-portfolio .lijstkandidaten .item {
  position: relative;
  margin-bottom: -10px; /* Adjust this value to control vertical spacing */
}


.our-portfolio .lijstkandidaten  .item:hover .hidden-content {
  opacity: 1;
  visibility: visible;
}

.our-portfolio .lijstkandidaten .hidden-content {
  background: var(--color-dark-orange);
  background: linear-gradient(180deg, var(--color-white) 0%, var(--color-orange) 80%);
  border-radius: 20px;
  left: 100px;
  top: -100px;
  text-align: center;
  opacity: 0;
  visibility: hidden;
  position: absolute;
  z-index: 5;
  transition: all 0.5s;
  width: 250px;
  margin: 10px;
  padding-top: 20px;
}


.our-portfolio .lijstkandidaten .hidden-content p {
  color: var(--color-white);
  font-size: 12px;
  margin: 5px!important;
}

.our-portfolio .lijstkandidaten .showed-content {
  top: 0px;
  position: relative;
  z-index: 0;
  background-color: var(--color-white);
  text-align: left;
  border-radius: 0px;
  margin: 0;
  padding: 2px;
  box-shadow: 0px 0px 10px rgba(0,0,0,0.1);
  transition: all 0.5s;
}

.our-portfolio .lijstkandidaten .hidden-content img {
  max-width: 200px;
  border-radius: 10px;
  margin: 10px;
}


/* Style for the non-functional radio buttons */
.radio-btn {
  display: inline-block;
  width: 15px;
  height: 15px;
  margin-right: 8px;
  margin-left: 8px;
  margin-bottom: 2px;
  border-radius: 50%;
  border: 2px solid var(--color-dark-orange); /* Change the color as needed */
  background-color: var(--color-orange); /* Background color of the radio button */
  position: relative;
  top: 3px;
}

.column h5{
  margin: 0px;
}

/*
--------------------------------------------------------------
FAQ
--------------------------------------------------------------
*/

.faq {
  margin-top: 200px;
}

.section-heading h2{
  text-align: center;
  margin-bottom: 20px;
}

.accordion-button {
  color: var(--color-white);
  background-color: var(--color-taupe);
  background: linear-gradient(200deg, var(--color-white) -20%, var(--color-taupe) 100%);

}
.accordion-button:focus{
  box-shadow: 0 0 0 0.25rem var(--color-orange);
}
.accordion-button:not(.collapsed){
  color: var(--color-white);
  border-color: var(--color-taupe);
}

.accordion-body p{
  font-size: medium;
  text-align: left;
  padding-top: 10px;
}

.accordion-body ul {
  list-style-type: disc;
  padding-left: 30px;
}

.accordion-body li {
  color: var(--color-maintext);
}

.accordion-body p .arrow{
  justify-content: left;
  margin-top: 10px;
}


.imagejongeren img{
  border-radius: 50px;
}

.arrowjongeren{
  margin-top: 10px !important;
}

/* 
---------------------------------------------
Blog
--------------------------------------------- 
*/

.our-blog {
  position: relative;
  margin-top: 100px;
  padding-top: 100px;
}

.our-blog .section-heading h2 {
  margin-right: 180px;
}

.our-blog .top-dec {
  text-align: right;
  margin-top: -80px;
}

.our-blog .top-dec img {
  max-width: 270px;
}

.our-blog .left-image {
  position: relative;
}

.our-blog .left-image img {
  border-radius: 20px;
  box-shadow: 0px 0px 15px rgba(0,0,0,0.1);
}

.our-blog .left-image .info {
  position: relative;
}

.our-blog .left-image .info .inner-content {
  background-color: var(--color-white);
  box-shadow: 0px 0px 15px rgba(0,0,0,0.1);
  border-radius: 20px;
  margin-right: 75px;
  position: absolute;
  margin-top: -100px;
  padding: 30px;
}

.our-blog .left-image ul li {
  display: inline-block;
  font-size: 15px;
  color: #afafaf;
  font-weight: 300;
  margin-right: 20px;
}

.our-blog .left-image ul li:last-child {
  margin-right: 0px;
}

.our-blog .left-image ul li i {
  color: var(--color-dark-orange);
  font-size: 16px;
  margin-right: 4px;
}

.our-blog .left-image h4 {
  font-size: 20px;
  font-weight: 700;
  color: var(--color-maintext);
  margin: 20px 0px 15px 0px;
}

.our-blog .left-image .info .main-blue-button {
  position: absolute;
  bottom: -80px;
  left: 0;
}

.our-blog .right-list {
  margin-left: 30px;
}

.our-blog .right-list ul li {
  display: inline-flex;
  width: 100%;
  margin-bottom: 30px;
}

.our-blog .right-list .left-content {
  margin-right: 45px;
}

.our-blog .right-list .left-content span {
  font-size: 15px;
  color: #afafaf;
  font-weight: 300;
}

.our-blog .right-list .left-content span i {
  color: var(--color-dark-orange);
  font-size: 16px;
  margin-right: 4px;
}
.our-blog .right-list .left-content p span {
  color: var(--color-orange);
}

.our-blog .right-list .left-content h4 {
  font-size: 20px;
  font-weight: 700;
  color: var(--color-maintext);
  margin: 20px 0px 15px 0px;
}
.our-blog .right-list .left-content h4 span{
  color: var(--color-orange);
  font-family: 'Poppins', sans-serif;
  font-size: 20px;
  font-weight: inherit;
}

.our-blog .right-list .left-content h4 em{
  color: var(--color-taupe);
  font-family: 'Poppins', sans-serif;
  font-weight: inherit;
  font-size: 20px;
}  


.our-blog .right-list .right-image img {
  width: 250px;
  border-radius: 20px;
}



/* 
---------------------------------------------
contact
--------------------------------------------- 
*/

.contact-us {
  padding: 243px 0px 243px 0px;
  /* background-image: url(../images/lijst.jpg); */
  background-image: url(../images/Zemst/voetbalelewijt.jpg);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
}

.contact-us .section-heading h2,
.contact-us .section-heading h2 em,
.contact-us .section-heading h2 span {
  color: var(--color-white);
  text-shadow: #1e1e1e 1px 0 10px;
}

.contact-us .section-heading p {
  color: var(--color-white);
  text-shadow: #1e1e1e 1px 0 10px;
  margin-top: 30px;
}

/*
EMAIL FORM VALIDATOR
*/
.contact-us .email-form {
  width: 100%;
}

.contact-us .email-form .form-group {
  padding-bottom: 8px;
}

.contact-us .email-form .error-message {
  display: none;
  color: #fff;
  background: #df1529;
  text-align: left;
  padding: 15px;
  font-weight: 600;
}

.contact-us .email-form .error-message br+br {
  margin-top: 25px;
}

.contact-us .email-form .sent-message {
  display: none;
  color: #fff;
  background: #059652;
  text-align: center;
  padding: 15px;
  font-weight: 600;
}

.contact-us .email-form .loading {
  display: none;
  background: #fff;
  text-align: center;
  padding: 15px;
}

.contact-us .email-form .loading:before {
  content: "";
  display: inline-block;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  margin: 0 10px -6px 0;
  border: 3px solid #059652;
  border-top-color: #fff;
  animation: animate-loading 1s linear infinite;
}

.contact-us .email-form input,
.contact-us .email-form textarea {
  border-radius: 0;
  box-shadow: none;
  font-size: 14px;
  padding: 12px 15px;
}

.contact-us .email-form input:focus,
.contact-us .email-form textarea:focus {
  border-color: var(--color-primary);
}

.contact-us .email-form textarea {
  padding: 10px 12px;
}

.contact-us .email-form button[type=submit] {
  background: #1f98d1;
  border: 0;
  padding: 12px 40px;
  color: #fff;
  transition: 0.4s;
}

.contact-us .email-form button[type=submit]:hover {
  background: var(--color-primary);
}
/*
EINDE EMAIL VALIDATOR
*/

.phone-info {
  margin-top: 40px;
}

.phone-info h4 {
  font-size: 20px;
  font-weight: 700;
  color: var(--color-white);
  text-shadow: #1e1e1e 1px 0 10px;
  
}

.phone-info h4 span i {
  width: 46px;
  height: 46px;
  display: inline-block;
  text-align: center;
  line-height: 46px;
  background-color: var(--color-white);
  border-radius: 50%;
  color: var(--color-dark-orange);
  font-size: 22px;
  margin-left: 30px;
  margin-right: 15px;
  text-shadow: none;
}

.phone-info h4 span a {
  color: var(--color-white);
  font-size: 15px;
  font-weight: 400;
}

form#contact .contact-dec {
  position: absolute;
  right: -166px;
  bottom: 0;
}

form#contact .contact-dec img {
  max-width: 178px;
}

form#contact {
  margin-left: 30px;
  position: relative;
  background-color: var(--color-white);
  padding: 60px 30px;
  border-radius: 20px;
}

form#contact input {
  width: 100%;
  height: 46px;
  border-radius: 33px;
  background-color: var(--color-taupe);
  border: none;
  outline: none;
  font-size: 15px;
  font-weight: 300;
  color: var(--color-white);
  padding: 0px 20px;
  margin-bottom: 20px;
}

form#contact input::placeholder {
  color: var(--color-white);
}

form#contact textarea {
  width: 100%;
  min-width: 100%;
  max-width: 100%;
  max-height: 180px;
  min-height: 140px;
  height: 140px;
  border-radius: 20px;
  background-color: var(--color-taupe);
  border: none;
  outline: none;
  font-size: 15px;
  font-weight: 300;
  color: var(--color-white);
  padding: 15px 20px;
  margin-bottom: 20px;
}

form#contact textarea::placeholder {
  color: var(--color-white);
}

form#contact button {
  display: inline-block;
  background-color: var(--color-taupe);
  font-size: 15px;
  font-weight: 400;
  color: var(--color-white);
  padding: 12px 25px;
  border-radius: 23px;
  letter-spacing: 0.25px;
  border: none;
  outline: none;
  transition: all .3s;
}

form#contact button:hover {
  background-color: var(--color-taupe);
}

/* 
---------------------------------------------
Footer Style
--------------------------------------------- 
*/
footer {
  background-image: url(../images/footerTaupe.svg);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  padding: 150px 0px 0px 0px;
  
}

footer p {
  text-align: center;
  margin: 30px 0px 45px 0px;
  color: black;
}

footer p a {
  color: black;
}

footer p a:hover {
  color: var(--color-white);
}

.social_icon {
  width: 100%;
  margin: 0 auto;
  text-align: center;
}

.social_icon ul {
  margin: 0px;
  padding: 0px;
  display: inline-block;
  text-align: center;
  list-style-type: none;
}

.social_icon li {
  float: left;
  padding: 10px 20px;
}

/* 
---------------------------------------------
wieiswie
--------------------------------------------- 
*/


.wieiswie {
  margin-top: 200px;
}


.wieiswie .mini-profiles{
  margin: 10% 0px 28% 0px;
}


.wieiswie .mini-profiles .mini-prof img{
  border-radius: 25%;
  margin-bottom: 20px;
  transition: transform .2s;
}

.wieiswie .mini-profiles .mini-prof img:hover{
  transform: scale(2);
  transition: all 0.5s;

}


.wieiswie .left-image img,
.wieiswie .right-image img{
  margin: 0px 0px 0px 0px;
  border-radius: 100px 0px 100px 0px;
  
}
.wieiswie .right-image img{
  border-radius: 0px 100px 0px 100px;
}

.wieiswie .section-heading P {
  align-items: center;
  margin-top: 40px;
}
.wieiswie .section-heading .titel {
  font-family: 'LeagueSpartan';
  text-align: center;
  color: var(--color-maintext);
  font-weight: bold;

}

.wieiswie .section-heading h1 {
  font-family: 'LeagueSpartan';
  text-align: left;
  color: var(--color-maintext);
  font-weight: bold;

}
.wieiswie .section-heading h2 {
  font-size: 30px;
  line-height: 50px;
  font-weight: bolder;
}

.wieiswie .section-heading h4 {
  font-family: 'Avenir';
  text-align: center;
  font-weight: bold;


}

.wieiswie .section-heading .oneliner {
  margin-top: 40px;

}

.wieiswie .section-heading .row{
  margin-bottom: 30px;
}
.wieiswie .section-heading .profile{
  border-bottom: 10px dotted var(--color-orange);
  padding-bottom: 30px;
}

.button-to-top{
  font-size: 3rem;
  z-index: 10;
  position: fixed;
  bottom: 3rem;
  right: 3rem;
}

.wieiswie .oneliner em span{
  font-size: 45px;
  font-weight: bold;
  font-style: italic;
}

/* 
---------------------------------------------
Speerpunten 
--------------------------------------------- 
*/

.speerpunten .section-heading h1 {
  justify-content: center;
  text-align: center;
  color: var(--color-taupe);
  font-weight: 700;
}

.speerpunten .section-heading .intro-speerpunten {
  justify-content: center;
  color: var(--color-taupe);
  margin-top: 50px;
  text-align: center;
}




/* 
------------------------------------------------------------
Bevoegdheden
------------------------------------------------------------
*/

.speerpunten {
  justify-content: center;
  align-items: center;
}

.speerpunten .onderwijs-en-veiligheid{
  margin-bottom: 50px;
}
section.speerpunten {
  margin-top: 25px;
}
.speerpunten .button-to-top{
  font-size: 3rem;
  z-index: 10;
  position: fixed;
  bottom: 3rem;
  right: 3rem;
}
.speerpunten ul {
  font-weight: 300;
}

.speerpunten .speerpunten-intro {
  margin-left: 25px;
  margin-right: 25px;
}

.speerpunten .speerpunten-links {
  font-size: 1.2rem;
}

@media (max-width: 992px) {
  .speerpunten .speerpunten-content {
    padding-left: 40px;
    padding-right: 40px;
  }
}

.speerpunten .title {
  text-wrap: wrap;
  color: white;
  text-shadow: 2px 2px 4px #000000;
  font-size: 5rem;
  font-weight: 300;
  line-height: 1.2;
  margin-top: 4rem;
  margin-bottom: 3rem;
}

@media (max-width: 992px) {
  .speerpunten .title {
    font-size: 2.3rem;
    margin-top: 1rem;
    margin-bottom: 1rem;
    word-wrap: break-word;
  }
}

.speerpunten .lead {
  text-transform: uppercase;
  font-size: 2rem;
  /* margin-top: 3rem; */
}

@media (max-width: 992px) {
  .speerpunten .lead {
    text-transform: uppercase;
    font-size: 1.2rem;
    /* margin-top: 3rem; */
  }
}

.speerpunten .main-text {
  background-color: #ffffffe5;
  padding: 1rem 1rem 1rem 1rem;
  margin-bottom: 2rem;
}

.speerpunten .main-text p {
  font-weight: 300;
  color: var(--color-maintext);
}

.speerpunten .main-text ul {
  font-weight: 300;
  color: var(--color-maintext);
}

@media (max-width: 992px) {
  .speerpunten .main-text {
    margin-bottom: 20px;
  }
}

.speerpunten .btn {
  background-color: var(--color-orange);
  color: #fff;
}

.speerpunten .btn::hover {
  background-color: var(--color-taupe);
  color: #fff;
}

.speerpunten .content {
  height: 50%;
  background-color: #ffffffc0;
  padding: 1rem 2rem 1rem 2rem;
}

.speerpunten .highlight {
  background: linear-gradient(120deg, var(--color-white) 0%, var(--color-taupe) 100%);
  color: #fff;
  font-weight: 600;
  background-repeat: no-repeat;
  background-size: 100% 90%;
  background-position: 0 60%;
  padding-left: 5px;
  padding-right: 5px;
  padding-top: 5px;
  padding-bottom: 5px;
}

.speerpunten .blockquote {
  font-size: 24pt;
  margin-top: 25px;
  padding-left: 25px;
  display: inline-block;
}

.speerpunten .blockquote-footer {
  font-size: 20pt;
  margin-top: 25px;
}

.speerpunten .quote-profile-picture {
  /* border: 2px solid var(--dark-gray); */
  border-radius: 500px;
  -webkit-border-radius: 500px;
  -moz-border-radius: 500px;
  display: inline-block;
  height: 200px;
  margin-right: 25px;
  margin-top: auto;
  margin-bottom: auto;
}

.speerpunten .inline-image-50 {
  width: 40%;
  margin-left: 10px;
  margin-right: 10px;
}

/* speerpunten background images  */

.speerpunten .bg-image {
  min-height: 80vh;
  background-position: 0;
  background-position: center;
  background-size: cover;
  overflow: hidden;
  border-bottom: #999 solid 1px;
  border-top: #999 solid 1px;
}

@media (max-width: 992px) {
  .speerpunten .bg-image {
    height: inherit;
  }
}

.speerpunten .section1 {
  background-image: url("/static/assets/images/Speerpunten/speerpunt3.jpg");
}

.speerpunten .section2 {
  background-image: url("/static/assets/images/Speerpunten/speerpunt1.jpg");
}

.speerpunten .section3 {
  background-image: url("/static/assets/images/Speerpunten/speerpunt2.jpg");
}

.speerpunten .section4 {
  background-image: url("/static/assets/images/Speerpunten/speerpunt4.jpg");
}
.speerpunten .section5 {
  background-image: url("/static/assets/images/Speerpunten/speerpunt5.jpg");
}
.speerpunten .section6 {
  background-image: url("/static/assets/images/Speerpunten/speerpunt6.jpg");
}
.speerpunten .section7 {
  background-image: url("/static/assets/images/Speerpunten/speerpunt7.jpg");
}
.speerpunten .section8 {
  background-image: url("/static/assets/images/Speerpunten/speerpunt8.jpg");
}
.speerpunten .section9 {
  background-image: url("/static/assets/images/Speerpunten/speerpunt10.jpg");
}
.speerpunten .section10 {
  background-image: url("/static/assets/images/Speerpunten/speerpunt11.jpg");
}
.speerpunten .section11 {
  background-image: url("/static/assets/images/Speerpunten/speerpunt12.jpg");
}
.speerpunten .section12 {
  background-image: url("/static/assets/images/Speerpunten/speerpunt13.jpg");
}
.speerpunten .section13 {
  background-image: url("/static/assets/images/Speerpunten/speerpunt14.jpg");
}
.speerpunten .section14 {
  background-image: url("/static/assets/images/Speerpunten/speerpunt15.jpg");
}
.speerpunten .section15 {
  background-image: url("/static/assets/images/Speerpunten/speerpunt9.jpg");
}









/* 
---------------------------------------------
Wegwijzer
--------------------------------------------- 
*/

.sign-container {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  margin-bottom: 40px;
}

.pole {
  position: absolute;
  width: 20px;
  background-color: #666;
  z-index: 0; /* Ensure this is behind the signs */
  top: 0;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  height: 100%; /* Adjust to span full height */
}

.pole-end {
  width: 20px;
  height: 100px;
  background-color: #666;
  border-radius: 0 0 5px 5px;
}

.sign {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  z-index: 1; /* Ensure this is above the pole */
}

.arrow {
  background-color: var(--color-orange);
  color: white;
  padding: 10px 20px;
  margin-left: 20px;
  margin-right: 50px;
  font-size: 1.2em;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  white-space: nowrap;
  min-width: 150px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
  transition: color 0.2s ease-in-out;
}

.last {
  padding: 20px 100px 20px 100px; 
  font-size: x-large;
  margin-top: 100px;
  text-transform: uppercase;
  left: 20px;
  border-radius: 20px;
}

.arrow span{
  color: var(--color-maintext);
  font-weight: 600;
  padding-right: 10px;
}

.arrow:hover{
  color: var(--color-maintext);
}


.arrow.left {
  padding-left: 20px;
  padding-right: 30px;
  border-radius: 6px 0 0 6px;
}

.arrow.right {
  padding-right: 20px;
  padding-left: 30px;
  border-radius: 0 6px 6px 0;
}

.arrow.left::after,
.arrow.right::before {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 0;
  height: 0;
  border-style: solid;
  border-color: transparent;
}

.arrow.left::after {
  right: -40px;
  border-width: 25px 0 25px 40px;
  border-left-color: var(--color-orange);
  border-radius: 0 5px 5px 0;
}

.arrow.right::before {
  left: -40px;
  border-width: 25px 40px 25px 0;
  border-right-color: var(--color-orange);
  border-radius: 5px 0 0 5px;
}


/* 
---------------------------------------------
Nieuws
--------------------------------------------- 
*/

.nieuws{
  margin-top: 150px;
}

.nieuws .section-heading{
  margin-bottom: 100px;
}

.nieuws .section-heading .titel {
  font-family: 'LeagueSpartan';
  text-align: center;
  color: var(--color-maintext);
  font-weight: bold;

}

.nieuws .section-heading h1 {
  font-family: 'LeagueSpartan';
  text-align: left;
  color: var(--color-maintext);
  font-weight: bold;

}
.nieuws .section-heading h2 {
  font-size: 30px;
  line-height: 50px;
  font-weight: bolder;
}

.nieuws .section-heading h4 {
  font-family: 'Avenir';
  text-align: center;
  font-weight: bold;
}

.nieuws .nieuws-post{
  margin-top: 60px;
  padding-bottom: 200px;
  border-bottom: 10px dotted var(--color-orange);
}

.nieuws .oldest{
  margin-top: 60px;
  padding-bottom: 200px;
  border-bottom: none;
}


.nieuws .nieuws-post .nieuws-tekst{
  font-size: 18px;
  padding: 20px 20px 0px 20px;
  justify-content: center;
}

.nieuws img {
  box-shadow: 0px 0px 15px rgba(0,0,0,0.1);
}


.nieuws .left-image .info .inner-content {
  background-color: var(--color-white);
  box-shadow: 0px 0px 15px rgba(0,0,0,0.1);
  border-radius: 20px;
  margin-right: 40px;
  position: absolute;
  margin-top: -30px;
  padding: 20px;
}

.nieuws li {
  display: inline-block;
  font-size: 15px;
  color: #7e7e7e;
  font-weight: 300;
}

.nieuws .inner-content li i {
  color: var(--color-dark-orange);
  font-size: 16px;
  margin-right: 4px;
  margin-left: 16px;
}

.nieuws .inner-content p{
  color: var(--color-maintext);
  font-size: 20px;
  font-weight: bold;
  padding: 0px;
}

.nieuws .left-image h4 {
  font-size: 20px;
  font-weight: 700;
  color: var(--color-orange);
  margin: 20px 0px 15px 0px;
}

.columns {
  display: flex;
  justify-content: space-between;
  padding: 0px;
  position: relative;
}

.column {
  width: 48%; /* Adjust the width as needed */
}

.post-it-note {
  position: absolute;
  bottom: -10px; /* Adjust this value to fine-tune the position */
  right: -50px; /* Adjust this value to fine-tune the position */
  padding: 10px;
  width: 250px; /* Adjust the width if needed */
  background: var(--color-orange);
  background: linear-gradient(190deg, var(--color-white) -20%, var(--color-taupe) 100%);
  color: var(--color-white); /* Text color */
  font-weight: bold;
  box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2);
  transform: rotate(-10deg); /* Slight rotation to mimic a post-it note */
  z-index: 2;
  border-radius: 4px;
}

/* 
---------------------------------------------
videos
--------------------------------------------- 
*/

.candidate {
  background-color: #fff;
  padding: 20px;
  margin-bottom: 50px;
  border-radius: 8px;
  box-shadow: 0 0 10px rgba(0,0,0,0.1);
}
.candidate h2 {
  font-size: 24px;
  margin-bottom: 10px;
}
.video {
  width: 100%;
  height: 800px;
}

/* 
---------------------------------------------
videos
--------------------------------------------- 
*/

.candidate {
  background-color: #fff;
  padding: 10px;
  margin-bottom: 50px;
  border-radius: 8px;
  box-shadow: 0 0 10px rgba(0,0,0,0.1);
  justify-content: center;
}
.candidate h5 {
  color: var(--color-maintext);
}
.video {
  margin-top: 10px;
  width: 100%;
  height: 250px;
} 
/* 
---------------------------------------------
Bestuur
--------------------------------------------- 
*/

.wieiswie .bestuur h4{
  margin-bottom: 100px;
   
}
/* 
---------------------------------------------
responsive
--------------------------------------------- 
*/

@media (max-width: 1645px) {
  form#contact .contact-dec {
    display: none;
  }
}

@media (max-width: 992px) {
  .main-banner .left-content h2{
  overflow-wrap: break-word;
  font-size: 35px!important;
  }
  .main-banner {
    padding-top: 150px;
  }
  .main-banner .left-content {
    margin-right: 0px;
    text-align: center;
    margin-bottom: 45px;
  }
  .main-banner:after {
    top: 76px;
    z-index: -1;
  }
  .main-banner .left-content form,
  .main-banner .left-content form input {
    width: 100%!important;
  }
  /* #about {
    margin-top: 0px;
  } */
  .about-us {
    position: relative;
    background-image: none;
    padding: 0px;
    margin-top: 60px;
  }
  .about-us .left-image {
    margin-right: 0px;
    position: absolute;
    bottom: -220px;
    right: 0;
    display: none;
  }
  .about-us .services {
    text-align: center;
  }
  .about-us .services .item  {
    background: var(--color-orange);
    background: linear-gradient(20deg, var(--color-white) -20%, var(--color-taupe) 100%);
    padding: 30px;
    border-radius: 20px;
    display: inline-block;
    /* max-width: 450px; */
  }
  .about-us .services .item .right-text {
    text-align: left;
  }
  .our-services {
    margin-top: 200px;
  }
  .our-services .left-image {
    margin-right: 0px;
    margin-bottom: 45px;
  }
  .our-services .section-heading h2,
  .our-services .section-heading p {
    margin-right: 0px;
    text-align: center;
    
  }
  .our-portfolio .section-heading h2 {
    margin: 0px 0px 5px 0px;
  }
  .our-portfolio .item {
    margin-bottom: 15px;
  }
  .our-blog {
    margin-top: 0px;
  }
  .our-blog .top-dec {
    display: none;
  }
  .our-blog .section-heading h2 {
    margin-right: 0px;
    text-align: center;
    margin-bottom: 45px;
  }
  .our-blog .left-image .info .inner-content {
    position: relative;
    margin-right: 0px;
  }
  .our-blog .left-image .info .main-blue-button {
    position: relative;
    bottom: 0px;
    margin-top: 30px;
  }
  .our-blog .left-image {
    margin-bottom: 45px;
  }
  .contact-us {
    margin-top: 60px;
    padding: 120px 0px;
  }
  .contact-us .section-heading {
    text-align: center;
  }
  form#contact {
    margin-left: 0px;
    margin-top: 30px;
  }
  form#contact .contact-dec {
    display: none;
  }
  footer p {
    margin: 15px 0px 30px 0px;
  }
  .nieuws .left-image .info .inner-content {
    background-color: var(--color-white);
    box-shadow: 0px 0px 15px rgba(0,0,0,0.1);
    border-radius: 20px;
    margin-right: 10px;
    position: relative;
    margin-top: -20px;
    padding: 20px;
  }

  .our-portfolio .lijstkandidaten .hidden-content {
    display: none;
  }


}

@media (max-width: 767px) {
  .about-us .left-image {
    bottom: -300px;
    margin: 0px 100px 0px 100px;
    display: none;
  }
  .our-blog .right-list {
    margin-left: 0px;
  }
  .our-blog .right-list ul li {
    display: inline-block;
    margin-top: 0px;
    padding-top: 30px;
    border-top: 1px solid #eee;
  }
  .our-blog .right-list .left-content {
    margin-right: 0px;
    width: 100%;
    margin-bottom: 15px;
  }
  .our-blog .right-list .right-image,
  .our-blog .right-list .right-image img {
    width: 100%;
  }
  .phone-info h4 span {
    display: block;
    margin-top: 15px;
  }
  .phone-info h4 span i {
    margin-left: 0px;
  }
  .post-it-note {
    bottom: -70px;
  }
  .last {
    padding: 20px 40px 20px 40px; 
    font-size: large;
    margin-top: 100px;
    text-transform: uppercase;
    left: 20px;
    border-radius: 20px;
  }
  
}
