﻿/*
Author       : Theme-Family
Template Name:	Sabbur - Personal Portfolio/Photographer Landing Page Theme
Version      : 1.0
*/
/*=============================================================
    CSS INDEX
    =============================
    01. GENERAL STYLE (BODY, LINK COLOR, SECTION TITLE, PRELOADER, SCROLL TO TOP, BTN, SECTION PADDING etc)
    02. START BOOTSTRAP NAVIGATION OVERRIDES
    03. START HOME DESIGN
    04. START ABOUT DESIGN
		--START COUNTER DESIGN
		--START EDUCATION DESIGN
    05. START SERVICE DESIGN 
	06. START PORTFOLIO DESIGN
    07. START TESTIMONIAL DESIGN
    08. START BLOG DESIGN
		-- START HIRE DESIGN
    09. START CONTACT DESIGN
    10. START FOOTER DESIGN

  =============================================================*/
/*
* ----------------------------------------------------------------------------------------
* 01.GENERAL STYLE
* ----------------------------------------------------------------------------------------
*/
html{
	overflow-x: hidden;
	height: 100%;
}
body {
	font-family: var(--thm-font);
	font-weight: normal;
	font-style: normal;
	font-size: 14px;
	color:  var(--thm-black);
}
:root {
	--thm-font: 'Poppins', sans-serif;
	--thm-base: #404040; /* blauw accent laten staan */
	--thm-color: #B41C1C; /* 🔴 vervangen oranje → rood */
	--thm-black: #2b1d6a; /* donkerblauw/paars basis */
	--thm-white: #ffffff;
	--thm-ase: #afb2bf;
	--thm-gray: #8e8e8e;
	--thm-f6: #F1F8FF;
	--thm-fb: #f6f6f6;
}

.atf-section-title h2 {
	color: var(--thm-black);
	border-bottom: 3px solid #B41C1C;
	display: inline-block;
	padding-bottom: 10px;
}


h1, h2, h3, h4, h5, h6 {
	font-family: var(--thm-font);
	color: var(--thm-black);
}
h1 a, h2 a, h3 a, h4 a, h5 a, h6 a {
	color: inherit;
}
h2 {
	font-size: 40px;
	line-height: 50px;
	margin-bottom: 0px;
	font-weight: 700;
}
h3 {
	font-size: 22px;
	line-height: 32px;
	margin-bottom: 0px;
	font-weight: 700;
}
h4 {
  font-size: 20px;
  line-height: 27px; }

h5 {
  font-size: 18px;
  line-height: 26px; }

h6 {
  font-size: 14px;
  line-height: 22px; }
  
p:last-child {
	margin-bottom: 0;
}
ul {
	margin: 0;
	padding: 0;
	list-style: none
}
p {
	padding: 0;
	margin: 0;
	font-size: 14px;
	color: var(--thm-black);
	line-height: 28px;
	font-family: var(--thm-font);
	font-weight: 300;
	letter-spacing: 0.3px;
}
img {
	max-width: 100%;
	height: auto;
	border: 0;
}
a:focus, .btn:focus {
	text-decoration: none;
	outline: none;
}
a:hover, a:active {
	color: inherit;
	text-decoration: none;
	outline: 0;
}
*, ::before, ::after {
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
}
span {
	letter-spacing: 0;
}
a, button, input {
	outline: medium none;
	color: inherit;
}
dl, ol, ul {
	padding: 0;
	margin: 0;
	list-style: none;
}
button:focus {
	outline: none !important;
	box-shadow: none !important;
	border-color: transparent !important;
}
::-webkit-input-placeholder {
	color: inherit;
}
::-moz-input-placeholder {
	color: inherit;
}
::-ms-input-placeholder {
	color: inherit;
}
.page-wrapper {
	position: relative;
	margin: 0 auto;
	width: 100%;
	min-width: 300px;
	z-index: 9;
	overflow: hidden;
}
.form-group {
	margin-bottom: 30px;
}
button, input, textarea {
    color: var(--thm-black);
}
button, input, textarea:focus {
    border: none;
    outline:none;
}
.atf-color-ase{
	color:var(--thm-ase)
}
.no-border{
	border:none! important;
}
/*
* ----------------------------------------------------------------------------------------
* PRELOADER
* ----------------------------------------------------------------------------------------
*/
.atf-status {
    position: fixed;
    width: 100%;
    height: 100%;
    z-index: 99999999;
    background: var(--thm-black);
}

.atf-status .atf-status-mes {
    border: 0 solid transparent;
    border-radius: 50%;
    width: 150px;
    height: 150px;
    position: absolute;
    top: calc(50vh - 75px);
    left: calc(50vw - 75px)
}

.atf-status-mes:before,
.atf-status-mes:after {
    content: '';
    border: 1em solid #ffffff;
    border-radius: 50%;
    width: inherit;
    height: inherit;
    position: absolute;
    top: 0;
    left: 0;
    -webkit-animation: atf-status-mes 2s linear infinite;
            animation: atf-status-mes 2s linear infinite;
    opacity: 0;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)"
}

.atf-status-mes:before {
    -webkit-animation-delay: .5s;
            animation-delay: .5s
}

@-webkit-keyframes atf-status-mes {
    0% {
        -webkit-transform: scale(0);
                transform: scale(0);
        opacity: 0;
        -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)"
    }

    50% {
        opacity: 1;
        -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)"
    }

    100% {
        -webkit-transform: scale(1);
                transform: scale(1);
        opacity: 0;
        -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)"
    }
}

@keyframes atf-status-mes {
    0% {
        -webkit-transform: scale(0);
                transform: scale(0);
        opacity: 0;
        -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)"
    }

    50% {
        opacity: 1;
        -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)"
    }

    100% {
        -webkit-transform: scale(1);
                transform: scale(1);
        opacity: 0;
        -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)"
    }
}

/*
* ----------------------------------------------------------------------------------------
* SCROLL TO TOP 
* ----------------------------------------------------------------------------------------
*/

.atf-scroll-top {
	position: fixed;
	right: 105%;
	bottom: 70px;
	z-index: 99;
	cursor: pointer;
	transition: 1.5s ease;
	border: none;
	background: transparent; 
}
.atf-scrollup-icon:hover{
	background: var(--thm-base);
}
.atf-scrollup-icon {
	font-size: 25px;
	width: 60px;
	height: 60px;
	background: var(--thm-color);
	line-height: 60px;
	color: var(--thm-white);
	border-radius: 50%;
}
.atf-scroll-top.open {
	right: 30px; }
/*
* ----------------------------------------------------------------------------------------
* BTN
* ----------------------------------------------------------------------------------------
*/	

.atf-themes-btn {
	color: var(--thm-white);
	background: var(--thm-color);
	border-radius: 4px;
	font-size: 15px;
	padding: 14px 23px;
	font-weight: 700;
	box-shadow: 0 0 15px rgba(0,0,0,0.1);
	-webkit-box-shadow: 0 0 15px rgba(0,0,0,0.1);
	display: inline-block;
	-moz-transition: all 0.5s ease-in-out 0s;
	-ms-transition: all 0.5s ease-in-out 0s;
	-o-transition: all 0.5s ease-in-out 0s;
	-webkit-transition: all 0.5s ease-in-out 0s;
	transition: all 0.5s ease-in-out 0s;
	text-transform: capitalize;
	letter-spacing: 0.08em;
}
.atf-themes-btn:hover{
	background: var(--thm-base);
	color: var(--thm-white);
}

.atf-main-btn .btn-2 {
	border: 1px solid var(--thm-white);
	background: transparent;
	padding: 11px 23px;
}
.atf-main-btn  .btn-2:hover {
	background: var(--thm-base);
	color: var(--thm-white);
	border:1px solid var(--thm-base);
}
/*
* ----------------------------------------------------------------------------------------
* SECTION PADDING
* ----------------------------------------------------------------------------------------
*/
.atf-section-padding {
	padding: 90px 0;
}

/*
* ----------------------------------------------------------------------------------------
* SECTION TITLE
* ----------------------------------------------------------------------------------------
*/
.atf-section-title {
	margin-bottom: 60px;
	text-align: center;
}
.atf-section-title h2 {
	font-weight: 900;
	font-size: 30px;
	line-height: 1.3;
	color: var(--thm-black);
	text-transform: uppercase;
	font-family: var(--thm-font);
}
.atf-section-title .atf-sec_icon i {
	color: var(--thm-base);
	margin:0 3px 0 3px;
}
.atf-section-title .atf-sec_icon  {
	position: relative;
	display:inline-block;
	margin-top: 10px;
}
.atf-section-title .atf-sec_icon:before{
	position:absolute;
	content: '';
	width: 50px;
	height: 2px;
	background: var(--thm-base);
	top: 16px;
	left: -56px;
}
.atf-section-title .atf-sec_icon:after{	
	position:absolute;
	content: '';
	width: 50px;
	height: 2px;
	background: var(--thm-base);
	top: 16px;
	right: -56px;
}
.atf-section-title .atf-sec_icon span {
	width: 6px;
	height: 6px;
	border-radius: 50%;
	margin: -3px 2px;
	background: var(--thm-base);
	display: inline-block;
}
.atf-section-title .atf-sec_icon .atf-radius {
	border-radius: 0px !important;
	width: 10px;
	height: 10px;
	border-radius: 0;
	transform: rotate(-47deg);
}
.atf-section-title .atf-sec_icon .atf-sec_radius {
	width: 8px;
	height: 8px;
	border-radius: 50%;
	margin: -4px 2px;
	background: var(--thm-base);
	display: inline-block;
}
.atf-section-title h3 {
	text-transform:capitalize;
	font-family:  var(--thm-font);
}
.atf-section-title p {
	font-family: var(--thm-font);
	font-size: 15px;
	font-weight: 400;
	margin-top: 25px;
	color: var(--thm-black);
}
/*
* ----------------------------------------------------------------------------------------
* 01.END GENERAL STYLE
* ----------------------------------------------------------------------------------------
*/	
/*
* ----------------------------------------------------------------------------------------
* 02. START BOOTSTRAP NAVIGATION OVERRIDES
* ----------------------------------------------------------------------------------------
*/

/**************************************
 * 02.Navber Style
 *************************************/
.navbar-navs{
	transition: all .5s ease-in-out;
	background-color: transparent;
	padding-top: 1.563rem;
	padding-bottom: 1.563rem;
}
.navbar-navs .navbar-collaps {
	box-shadow: 0px 6px 9px 0px rgba(0, 0, 0, 0.09);
	-webkit-box-shadow: 0px 6px 9px 0px rgba(0, 0, 0, 0.09);
}
.navbar-navs.navbar-expend .menu-nav,
.navbar-navs.navbar-collaps .menu-nav{
	position: relative;
	padding-right: 0px;
	padding-left: 0;
}
.navbar-navs.navbar-expend .menu-nav,
.navbar-navs.navbar-collaps .menu-nav {
	color: var(--thm-white);
	text-transform: uppercase;
	font-weight: 600;
	font-size: 14px;
	letter-spacing: 0.7px;
	font-family: var(--thm-font);
	margin-left:10px;
}
.navbar-navs.navbar-expend .menu-nav:hover, .navbar-navs.navbar-collaps .menu-nav:hover {
	color: var(--thm-color);
}
.navbar-navs .navbar-brand{
	color: var(--thm-white);
	font-size: 1.6rem;
	font-weight: 700;
	letter-spacing: 1px;
	font-family: var(--thm-font);
	text-transform: uppercase;
}
.navbar-brand img {
	border-radius: 50%;
	width: 60px;
	height: 60px;
}
.navbar-navs.navbar-expend .menu-nav:hover {
	color: var(--thm-color);
}
.navbar-navs.navbar-collaps .show > .nav-link, 
.navbar-navs.navbar-collaps .active > .nav-link, 
.navbar-navs.navbar-collaps .nav-link.show, 
.navbar-navs.navbar-collaps .nav-link.active {
	color: var(--thm-color);
}
.navbar-navs.navbar-expend .show > .nav-link, 
.navbar-navs.navbar-expend .active > .nav-link, 
.navbar-navs.navbar-expend .nav-link.show, 
.navbar-navs.navbar-expend .nav-link.active {
	color: var(--thm-color);
}
.navbar-navs.navbar-collaps {
	transition: all .5s ease-in-out;
	background: var(--thm-black);
	padding-top: 20px;
	padding-bottom: 20px;
	-webkit-box-shadow: 0 2px 28px 0 rgba(255, 255, 255, 0.15);
	box-shadow: 0 2px 8px 0 rgba(0, 0, 0, 0.15);
	-webkit-animation-duration: 1s;
	animation-duration: 1s;
	-webkit-animation-fill-mode: both;
	animation-fill-mode: both;
	-webkit-animation-name: fadeInDown;
	animation-name: fadeInDown;
}
.navbar-navs.navbar-collaps .menu-nav {
	color: var(--thm-white);
}
.navbar-navs.navbar-collaps .menu-nav:hover {
	color: var(--thm-color);
}
.navbar-navs.navbar-collaps .show > .menu-nav, .navbar-navs.navbar-collaps .active > .menu-nav, .navbar-navs.navbar-collaps .menu-nav.show, .navbar-navs.navbar-collaps .menu-nav.active {
	color: var(--thm-color);
}
.navbar-navs.navbar-collaps .navbar-expand {
	color: var(--thm-white);
}
.navbar-navs.navbar-collaps .navbar-toggler span {
	background: var(--thm-white);
	border: 1px solid var(--thm-white);
}
.navbar-navs .navbar-expand {
	color: var(--thm-gray);
	font-size: 1.6rem;
	font-weight: 700;
	letter-spacing: 1px;
	font-family: var(--thm-font);
	text-transform: uppercase;
}
.navbar-navs .navbar-nav .dropdown-item.show .dropdown-menu, .navbar-navs .dropdown.show .dropdown-menu, .navbar-navs .dropdown-btn.show .dropdown-menu {
	-webkit-transform: translate3d(0px, 0px, 0px);
	transform: translate3d(0px, 0px, 0px);
	visibility: visible !important;
}
.navbar-navs .dropdown-menu {
	margin: 1.12rem 0 0;
	border-radius: 0;
}
.navbar-navs .dropdown-menu .dropdown-item {
	padding: .7rem 1.7rem;
	transition: all 500ms ease;
}
.navbar-navs .dropdown-menu .dropdown-item:hover {
	background: var(--thm-base);
	color: var(--thm-white);
	transition: all 500ms ease;
}
.navbar-navs .dropdown-menu .dropdown-item.active {
	background: var(--thm-base);
}
.navbar-toggler {
	position: relative;
}
.navbar-toggler:focus, .navbar-toggler:active {
	outline: 0;
}
.navbar-toggler span {
	display: block;
	background: var(--thm-white);
	border: 1px solid var(--thm-white);
	height: 3px;
	width: 25px;
	margin-top: 4px;
	margin-bottom: 4px;
	-webkit-transform: rotate(0deg);
	transform: rotate(0deg);
	left: 0;
	opacity: 1;
}
.navbar-toggler span:nth-child(1), .navbar-toggler span:nth-child(3) {
	transition: -webkit-transform .35s ease-in-out;
	transition: transform .35s ease-in-out;
	transition: transform .35s ease-in-out, -webkit-transform .35s ease-in-out;
}
.navbar-toggler:not(.collapsed) span:nth-child(1) {
	position: absolute;
	left: 12px;
	top: 10px;
	-webkit-transform: rotate(135deg);
	transform: rotate(135deg);
	opacity: 0.9;
}
.navbar-toggler:not(.collapsed) span:nth-child(2) {
	height: 12px;
	visibility: hidden;
	background-color: transparent;
}
.navbar-toggler:not(.collapsed) span:nth-child(3) {
	position: absolute;
	left: 12px;
	top: 10px;
	-webkit-transform: rotate(-135deg);
	transform: rotate(-135deg);
	opacity: 0.9;
}

.navbar-nav .menu-nav {
	position: relative;
}
/*
* ----------------------------------------------------------------------------------------
* 02.END BOOTSTRAP NAVIGATION OVERRIDES
* ----------------------------------------------------------------------------------------
*/
/*
* ----------------------------------------------------------------------------------------
* 03.START HOME DESIGN
* ----------------------------------------------------------------------------------------
*/
.atf-bg-home {
	background-image: url(../img/banner/rene_rechts.jpg);
	position: relative;
	background-position: center;
	background-size:cover;
}
.atf-cover-bg::before {
	content: '';
	height: 100%;
	left: 0;
	position: absolute;
	top: 0;
	width: 100%;
	background: rgba(0, 0, 0, 0.0);
}
.atf-header-area {
	background-color: var(--thm-f6);
	height: 750px;
	overflow: hidden;
}
.atf-align-items-details {
	display: flex;
	align-items: center;
	min-height: 100%;
}
.atf-content-details h5 {
	color: var(--thm-black);
	font-size: 30px;
	font-weight: 700;
	line-height: 40px;
	text-transform: capitalize;
}
.atf-single-details h2 {
	color: var(--thm-white);
	text-transform: capitalize;
	font-weight: 700;
	font-family: var(--thm-font);
	font-size: 40px;
	letter-spacing: 0.7px;
	margin-left: -4px;
}
.atf-header-area .atf-single-details h2 strong {
	font-size: 75px;
	line-height:70px
}
.atf-header-area .atf-single-details span {
	margin-left: 2px;
	color: var(--thm-black);
}
.atf-header-area .atf-single-details p {
	color: var(--thm-black);
	font-size: 16px;
	margin: 15px 0;
	line-height: 30px;
}
.atf_home_img2 img {
	box-shadow: 0 0px 15px rgba(0,0,0,0.1);
	-webkit-box-shadow: 0 0px 15px rgba(0,0,0,0.1);
	border: 5px solid var(--thm-white);
	border-radius: 10px;
	z-index:999;
}
.atf-home-gradient .atf_home_img2 img {
	border-radius:50%;
}
.atf-default-img img {
	border-radius: 30% 70% 59% 41%/30% 38% 62% 70%;
}
.atf-home-social-icon {
	position: absolute;
	right: 0px;
	top: 115px;
	transform: rotate(90deg);
}
.atf-home-social-icon ul li a i {
	transform: rotate(-90deg);
}
.atf-banner-social ul li {
	display: inline-block;
}
.atf-banner-social ul li a {
	display: inline-block;
	height: 45px;
	width: 45px;
	line-height: 45px;
	text-align: center;
	background: var(--thm-white);
	color: var(--thm-color);
	font-size: 25px;
	margin: 5px 20px auto auto;
	border-radius: 50%;
}
.atf-home-social-icon ul li a:hover{
	background: var(--thm-base);
	color: var(--thm-white);
}
.atf-single-details  h5 {
	-webkit-animation: 1.7s .7s fadeInDown both;
	animation: 1.7s .7s fadeInDown both; }

.atf-single-details  h2 {
	-webkit-animation: 1.7s .7s fadeInUp both;
	animation: 1.7s .7s fadeInUp both; }
.atf-single-details  p {
	-webkit-animation: 1.7s .7s fadeInUp both;
	animation: 1.7s .7s fadeInUp both; }

.atf-single-details .atf-main-btn{
	-webkit-animation: 1.7s 2s fadeInUp both;
	animation: 1.7s 2s fadeInUp both; }

/*
* ----------------------------------------------------------------------------------------
* 03.END HOME DESIGN
* ----------------------------------------------------------------------------------------
*/
/**************************************
 * 04.START ABOUT DESIGN
 *************************************/
#about .atf-about-img img{
	border: 10px solid var(--thm-color);
	padding: 5px;
}
.about-single-content h2 {
	font-size: 22px;
	margin-bottom: 10px;
} 
.about-single-content p {
	font-size: 14px;
	line-height: 30px;
}
.atf-skill-box h2 {
	margin-bottom: 10px;
} 
.atf-main-about{
	margin:15px 0;
}
.atf-single-about {
	padding: 15px 15px;
	border-radius: 0px;
}
.atf-about-content{
	box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
}
.atf-single-about:hover {
	background: var(--thm-base);
}
.atf-single-about:hover h3,
.atf-single-about:hover p,
.atf-single-about:hover i{
	color: var(--thm-white);
	transition:0.3s ease-in-out;
}
.atf-single-about {
	transition: 0.3s all ease-in-out 0s;
	-webkit-transition: 0.3s all ease-in-out 0s;
}
.atf-about-icon {
	display: inline-block;
	-webkit-transition: 0.3s all ease-in-out 0s;
	transition: 0.3s all ease-in-out 0s;
}
.atf-about-icon i {
	color: var(--thm-color);
	font-size: 45px;
	text-align: center;
	padding-top: 5px;
}
.atf-about-text h3 {
	padding: 0px 0 10px 0;
	color: var(--thm-color);
	font-weight: 700;
	letter-spacing: 1px;
}
.atf-services-text p {
	color: var(--thm-black);
}

#about .about_content h4{
	font-weight: 600;
	font-size:22px;
}

#about .about-list .title {
	font-weight: 600;
	opacity: 1; 
	text-transform: capitalize;
}
#about .about-list li:not(:last-child) {
	padding-bottom: 15px;
} 
.about_content p {
	line-height: 1.8;
}
.about_border {
	width: 300px;
	height: 300px;
	display: block;
	background: var(--thm-base);
	border-radius: 50%;
	position: absolute;
	right: 82px;
	top: 0px;
	z-index: -1;
	opacity: 0.1;
}

.atf_social_list li {
	display: inline-block;
	margin-right:12px;
}

.atf_social_list a {
	display: inline-block;
	height: 40px;
	width: 40px;
	text-align: center;
	line-height: 40px;
	-webkit-transition: 0.3s;
	transition: 0.3s;
	color: var(--thm-white);
	font-size: 15px;
	border-radius: 50%;
	position: relative;
	z-index: 1;
	background: var(--thm-color);
}
.atf_social_list a:after{
	content: '';
	display: block;
	position: absolute;
	border-radius: 100%;
	width: 0;
	height: 0;
	transition: 0.3s;
	bottom: 0;
	left: 50%;	
	z-index: -1;
}
.atf_social_list a:hover:after {
  width: 40px;
  height: 40px;
  margin-left: -20px;
}
.atf_social_list a:hover{
	color: #fff;
}
.atf_social_list a i {
}
a.atf_facebook:after{
    background: #CC181E;
}
a.atf_twitter:after{
    background: #CC181E;
}
a.atf_google:after{
    background: #CC181E;
}
a.atf_linkedin:after{
    background: #CC181E;
}
a.atf_youtube:after{
    background: #CC181E;
}
a.atf_skype:after{
    background: #00AFF0;
}
/**************************************
 * ABOUT PERSONAL INFO 
 *************************************/

#about .atf-about-list .time {
	color: var(--thm-white);
	font-size: 15px;
	padding: 3px 12px;
	display: inline-block;
	margin-bottom: 12px;
	border-radius: 4px;
	font-weight: 500;
	background: var(--thm-black);
	opacity: .8;
}
#about .atf-about-list h5 {
	margin: 7px 0 10px;
	color: var(--thm-white);
}
#about .atf-about-list .place::before {
	position: absolute;
	content: '';
	width: 10px;
	height: 2px;
	background: var(--thm-white);
	left: 7px;
	top: 9px;
	opacity: .8;
}
#about .atf-about-list.place {
	opacity: .8;
	font-weight: 600;
	position: relative;
	padding-left: 26px;
}
.about .atf-about-list .title {
	font-weight:600;
	opacity: 1;
	text-transform: capitalize;
}
.about .atf-about-list .value {
	font-weight: 300;
	opacity: 0.85;
	font-size: 14px;
}
.about .atf-about-list li:not(:last-child) {
	padding-bottom: 15px;
}
 /*
* ----------------------------------------------------------------------------------------
* START COUNTER DESIGN
* ----------------------------------------------------------------------------------------
*/	
#atf-main-counter{
	background: var(--thm-f6);
}
.atf-counter {
	color: var(--thm-white);
	font-family: var(--thm-font);
	padding: 20px 15px;
	box-shadow: 5px 5px 14px rgba(0,0,0,0.1);
	-webkit-box-shadow: 5px 5px 14px rgba(0,0,0,0.1);
	background: var(--thm-white);
	border-radius: 10px;
}
.atf-counter .atf-counter-value {
	color: var(--thm-color);
	font-size: 30px;
	font-weight: 700;
	display: block;
}
.atf-counter h3 {
	font-size: 18px;
	font-weight: 700;
	letter-spacing: 0.3px;
	text-transform: capitalize;
	overflow:hidden;
}
.atf-counter .atf-counter-icon {
	color: var(--thm-color);
	font-size: 35px;
	line-height: 60px;
	float: left;
	margin-right: 20px;
}
.atf-counter .atf-counter-value{ color: var(--thm-color); }
@media screen and (max-width:990px){
    .atf-counter{ margin-bottom: 40px; }
}
/*
* ------------------------------------
*  END COUNTER DESIGN
* -------------------------------------
*/
/**************************************
 * 04.END ABOUT DESIGN
 *************************************/
 
 /**************************************
 * START EDUCATION DESIGN
 *************************************/ 
#education{
	background: var(--thm-f6);
 } 
.atf-single_resume {
	background: var(--thm-white);
	padding: 15px 15px;
	margin: 10px 0;
	position: relative;
}
.atf-single_icon i {
	font-size: 38px;
	margin-bottom: 12px;
	position: absolute;
	right: 16px;
	opacity: 0.2;
}
#education .atf-edu-title {
	font-size: 20px;
	font-weight: 600;
	color: var(--thm-white);
	margin-bottom: 30px;
	text-transform: uppercase;
	position: relative;
	border: 1px solid #ddd;
	padding: 9px 10px;
	box-shadow: 0 0px 10px rgba(0, 0, 0, 0.3);
	background: var(--thm-black);
	text-align: center;
}

/**************************************
 * START SKILL DESIGN
 *************************************/

.atf-progress-content .bg-primary{
	background-color: var(--thm-color)!important;
}
.atf-progress-content h6 {
	font-size: 16px;
}
.atf-progress-content .progress {
  height: 8px;
  overflow: visible;
  border: 1px solid #61cccc;
}
.progress {
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  height: 1rem;
  overflow: hidden;
  font-size: .75rem;
  background-color: #e9ecef;
  border-radius: .25rem;
}
.progress-value.d-block.text-dark.h6 {
	font-size: 15px;
	margin-top: 7px;
}
.atf-progress-content .progress {
	height: 20px;
	overflow: visible;
	border: 1px solid #61cccc;
}
#education .atf-progress-content .progress .progress-value {
  position: absolute;
  top: -30px;
  right: -15px;
  font-size: 13px;
}
#education .atf-progress-content .progress .progress-bar {
  -webkit-animation: animate-positive 3s;
  animation: animate-positive 3s;
  overflow: visible !important;
}
@-webkit-keyframes animate-positive {
  0% {
    width: 0;
  }
}

@keyframes animate-positive {
  0% {
    width: 0;
  }
}
/**************************************
 *  END SKILL DESIGN
 *************************************/
 /**************************************
 * END EDUCATION DESIGN
 *************************************/

/**************************************
 * 05.START SERVICE DESIGN
 *************************************/
 
.atf-main-services{
	margin:15px 0;
}
.atf-single-services {
	box-shadow: 0px 5px 15px 0px rgba(75, 81, 91, 0.2);
	padding: 30px 35px;
	border-radius: 0px;
}
.atf-services-icon i {
	font-size: 25px;
	margin-bottom: 20px;
	color: var(--thm-color);
}
.atf-services-icon {
	width: 55px;
	height: 55px;
	line-height: 60px;
	background: transparent;
	border: 2px dashed var(--thm-color);
	border-radius: 30px;
	margin: 0 auto;
	transition: .5s ease;
}
.atf-services-text h3 {
	padding-top: 20px;
	color: var(--thm-color);
	font-weight: 700;
	letter-spacing: 1px;
}
.atf-services-text p{
	padding: 15px;
	
}
.atf-single-services:hover .atf-services-text h3{
	color: var(--thm-base);
}
.atf-single-services:hover .atf-services-icon {
	transform: translateY(-6px);
}

/**************************************
 * 05. END SERVICE DESIGN
 *************************************/

/**************************************
 * 06. START PORTFOLIO DESIGN
 *************************************/
#portfolio {
    position: relative;
	overflow: hidden;
}
#portfolio .atf-portfolio-nav {
	margin-bottom: 40px;
	text-align: center;
}
#portfolio .atf-portfolio-nav .nav {
	display: inline-block;
	margin: 0;
	border-radius: 10px;
}
#portfolio .atf-portfolio-nav .nav li {
	float: left;
	font-size: 15px;
	cursor: pointer;
	font-weight: 500;
	text-transform: capitalize;
	-moz-transition: all 0.3s ease-in-out 0s;
	-ms-transition: all 0.3s ease-in-out 0s;
	-o-transition: all 0.3s ease-in-out 0s;
	-webkit-transition: all 0.3s ease-in-out 0s;
	transition: all 0.3s ease-in-out 0s;
	padding: 5px 15px;
	margin: 2px 12px;
	color: var(--thm-black);
	border: 1px solid var(--thm-ase);
}
#portfolio .atf-portfolio-nav .nav li:hover, 
#portfolio .atf-portfolio-nav .nav li.filter-active {
	color: var(--thm-white);
	transition: all 0.3s ease;
	-moz-transition: all 0.3s ease;
	-webkit-transition: all 0.3s ease;
	-ms-transition: all 0.3s ease;
	-o-transition: all 0.3s ease;
	background: var(--thm-color);
}
.atf-grid-portfolio img {
    width: 100%;
}
.atf-single-portfolio{
    background: var(--thm-color);
    font-family: var(--thm-font);
    overflow: hidden;
    position: relative;
}
.atf-single-portfolio:before{
    content: "";
    background: var(--thm-white);
    height: 30px;
    width: 0;
    border-radius: 0 50px 50px 0;
    opacity: 0;
    position: absolute;
    bottom: 20px;
    left: 0;
    z-index: 1;
    transition: all 0.5s ease 0s;
}
.atf-single-portfolio:hover:before{
    width: calc(100% - 85px);
    opacity: 0.9;
}
.atf-single-portfolio img{
    width: 100%;
    height: auto;
    transition: all 0.3s ease 0s;
}
.atf-single-portfolio:hover img{ opacity: 0.6; }
.atf-single-portfolio .atf-portfolio-content{
    color: var(--thm-white);
    opacity: 0;
    position: absolute;
    bottom: 10px;
    left: 10px;
    z-index: 1;
    transition: all 0.4s ease 0.2s;
}
.atf-single-portfolio:hover .atf-portfolio-content{
    opacity: 1;
    bottom: 25px;
}
.atf-single-portfolio .atf-portfolio-title {
	font-size: 25px;
	font-weight: 500;
	text-transform: capitalize;
	text-shadow: 0 0 3px rgba(0,0,0,0.3);
	margin: 0 0 7px;
	color: var(--thm-white);
}
.atf-single-portfolio .atf-portfolio-post{
    color: var(--thm-black);
    font-size: 15px;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: block;
}
.atf-single-portfolio .atf-portfolio-icon{
    padding: 0;
    margin: 0;
    list-style: none;
    opacity: 0;
    position: absolute;
    right: 10px;
    bottom: 10px;
    transition: all 0.3s ease 0.3s;
}
.atf-single-portfolio:hover .atf-portfolio-icon{
    opacity: 1;
    bottom: 22px;
}
.atf-single-portfolio .atf-portfolio-icon li{
    margin: 0 3px;
    display: inline-block;
}
.atf-single-portfolio .atf-portfolio-icon li{
    color: #333;
    background-color: #fff;
    font-size: 14px;
    text-align: center;
    line-height: 27px;
    height: 27px;
    width: 27px;
    border-radius: 50%;
    display: inline-block;
    transition: all 0.3s ease 0s;
}
.atf-single-portfolio .atf-portfolio-icon li:hover{
    color: #fff;
    background-color: #333;
    box-shadow: 0 0 0 4px rgba(255,255,255,0.25);
}
@media only screen and (max-width:991px){
    .atf-single-portfolio{ margin: 0 0 30px; }
}
.atf-mailchamp-subscribe .atf-subscription-label {
	color: var(--thm-white);
	margin-top: 15px;
}

/**************************************
 * 06. END PORTFOLIO DESIGN
 *************************************/

 /**************************************
 * 07. START TESTIMONIAL DESIGN
 *************************************/
#testimonial{
	background: var(--thm-f6);
}
.atf-testimonial-item {
	overflow: hidden;
	position: relative;
	background: var(--thm-white);
	padding: 20px 0;
}
.atf-testimonial-inner .atf-testimonial-image img {
	border-radius: 50%;
	display: inline-block;
	overflow: hidden;
	width: 100px;
	height: 100px;
}
.atf-testimonial-text {}
.atf-testimonial-info .atf-testimonial-designation {
	display: inline-block;
	font-size: 15px;
	line-height: 2.2em;
	font-weight: 300;
	letter-spacing: 0.05em;
	transition: all 500ms ease;
	text-align: center;
}
.atf-testimonial-inner img {
	width: 35px;
	height: 45px;
	text-align: center;
	margin-bottom: 0;
}
.atf-testimonial-inner {
	display: block;
	color: var(--thm-white);
}
.atf-testimonial-inner .atf-testimonial-text {
	font-size: 15px;
	line-height: 28px;
	font-weight: 300;
	margin-bottom: 0;
	color: var(--thm-black);
	display: block;
	margin:10px 0;
}
.atf-testimonial-black {
	color: var(--thm-black) !important;
}
.atf-testimonial-star-icon i{
	cursor:pointer;
	color: var(--thm-black);
	margin-top:7px;
}
/* owl theme */
.atf-main-testimonials.owl-theme .owl-dots, .owl-theme .owl-nav {
	margin-top: 30px;
}
.atf-main-testimonials.owl-theme .owl-nav.disabled + .owl-dots {
    margin-top: 50px;
    line-height: .7;
}
.atf-main-testimonials.owl-theme .owl-dots .owl-dot span {
	width: 15px;
	height: 15px;
	margin: 0 8px;
	border-radius: 50%;
	border: 1px solid var(--thm-black);
	background: transparent;
}
.atf-main-testimonials.owl-theme .owl-dots .owl-dot.active span, .atf-main-testimonials.owl-theme .owl-dots .owl-dot:hover span {
	background: var(--thm-color);
	border: 2px solid var(--thm-color);
	box-shadow: 0 0 15px rgba(0,0,0, 0.2);
}
.atf-testimonial-icon i {
	color: var(--thm-color);
	font-size: 16px;
}
 /**************************************
 * 07. END TESTIMONIAL DESIGN
 *************************************/
 /**************************************
 * 08. START BLOG DESIGN
 *************************************/
.atf-blog-area .atf-single-blog {
	position: relative;
	border-radius: 4px;
	overflow: hidden;
	box-shadow: 0 0 15px rgba(0,0,0, 0.1);
	-webkit-box-shadow: 0 0 15px rgba(0,0,0, 0.1);
}
.atf-blog-content {
	padding: 30px;
}
.atf-post-img  img{width:100%;}
.atf-post-img .atf-blog-tag a {
	overflow: hidden;
	position: relative;
}
.atf-post-img .atf-blog-date a {
	color: var(--thm-white);
	font-size: 15px;
	padding: 7px 15px;
	border-radius: 3px;
	background: var(--thm-color);
}
.atf-post-img .atf-blog-date {
	content: '';
	position: absolute;
	top: 30px;
	right: 9px;
	color: var(--thm-white);
}
.atf-blog-content .atf-blog-tag {
	font-weight:300;
	-webkit-transition: all .3s;
	transition: all .3s;
}
.atf-blog-content .atf-single-blog-icon {
	-webkit-transition: all .3s;
	transition: all .3s;
}
.atf-single-blog .atf-blog-content h3 {
	padding-top:10px;
	color: var(--thm-color);
}
.atf-single-blog .atf-blog-content h3:hover {
	color: var(--thm-base);
}
.atf-single-blog .atf-blog-content p {
	padding: 15px 5px 15px 0;
}
.atf-single-blog-icon i{
	color: var(--thm-base);
}
.atf-blog-btn .atf-themes-btn {
	color: var(--thm-color);
	background: white;
	border: none;
	box-shadow: 0 0 15px rgba(0,0,0,0.0);
	-webkit-box-shadow: 0 0 15px rgba(0,0,0,0.0);
	padding: 0;
	margin: 0;
	text-transform: capitalize;
	font-size: 16px;
	letter-spacing: 0;
}
.atf-blog-btn .atf-themes-btn:hover {
	color: var(--thm-base);
}
.atf-blog-btn .atf-themes-btn:hover i {
	opacity: 1;
	transform: translateX(4px);
	transition: 0.5s all ease-in-out;
}
.atf-blog-btn .atf-themes-btn i {
	font-size: 13px;
	margin-left: 3px;
	opacity: 0;
	transform: translateX(0);
}
.atf-hire-area{
	background: var(--thm-color);
}
.atf-hire-area .atf-themes-btn{
	background: var(--thm-white);
	color: var(--thm-black);
	transition: 0.5s all ease-in-out;
}
.atf-hire-area .atf-themes-btn:hover{background: var(--thm-black);
	color: var(--thm-white);}
.atf-hire-content h1 {
	color: var(--thm-white);
	font-size: 40px;
	font-weight: 700;
	line-height: 1.3
}
/**************************************
 * 08. END BLOG DESIGN
 *************************************/
 /**************************************
 * 09. START CONTACT DESIGN
 *************************************/
.atf-contact-border {
	box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.1);
	-webkit-box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.1);
	padding: 45px;
	background: var(--thm-black);
	border-radius: 8px;
}
.atf-contact-border h3 {
	margin-bottom: 25px;
	margin-left: 14px;
	color: var(--thm-ase);
	text-transform: capitalize;
}
.atf-contact-info{
	margin-top:30px;
}
.atf-contact-address {
	display: block;
	overflow: hidden;
}
.atf-contact-address1{
	border-bottom:none ! important;
}
.atf-contact-details {
	display: block;
	overflow: hidden;
	margin: 20px 0;
	background: var(--thm-white);
	padding: 10px 15px;
	border-radius: 8px;
}
.atf-contact-details i {
	font-size: 25px;
	color: var(--thm-color);
	text-align: center;
	float: left;
	margin-right: 18px;
	margin-top: 5px;
}
.atf-contact-details h4 {
	color: var(--thm-color);
	font-weight: 700;
}
.atf-contact-details p {
	margin-top: 10px;
	color: var(--thm-black);
	display: block;
	overflow: hidden;
}
.atf-contact-form .button {
    margin: 0;
}
.atf-contact-area .form input, .atf-contact-area .form textarea {
	width: 100%;
	padding: 10px 20px;
	border: 0;
	background-color: var(--thm-f6);
	font-weight: 400;
	color: var(--thm-black);
	border: 1px solid #ddd;
	border-radius: 5px;
}
.atf-contact-area .form textarea {
    max-height: 120px;
    max-width: 100%;
	color: var(--thm-black);
}
.form-message{
	color: var(--thm-white);
	margin-left:15px;
}
.atf-contact-btn .atf-themes-btn {
	color: var(--thm-white);
	width:100%;
	letter-spacing:0;
}
 /**************************************
 * 09. END CONTACT DESIGN
 *************************************/

 /**************************************
 * 10. START FOOTER DESIGN
 *************************************/
.atf-footer-area {
    background: var(--thm-black);
}
.atf-footer-boottom {
    padding: 30px 0;
}
.atf-footer-boottom p {
	color: var(--thm-white);
	margin-top: 20px;
	text-align: left;
}
.atf-footer-area .atf-banner-social{
	text-align:right;
}
.atf-footer-boottom  a{
	color:  var(--thm-f6);
}
.atf-footer-boottom  a:hover{
	color:  var(--thm-base);
}
.atf-footer-area .atf-banner-social ul li a:hover {
	background: var(--thm-color);
	color: var(--thm-white);
	transition: all 0.5s ease-in-out 0s;
	-webkit-transition: all 0.5s ease-in-out 0s;
}
.atf-footer-area .atf-banner-social ul li a {
	color: var(--thm-color);
}

/* ==========================================================
   🔴 Zoweb rode knopstijl met subtiele glans
   ========================================================== */

.atf-themes-btn {
	background: linear-gradient(90deg, #B41C1C 0%, #8A0E0E 100%);
	color: #fff;
	border: none;
	border-radius: 4px;
	font-weight: 700;
	padding: 14px 23px;
	box-shadow: 0 0 10px rgba(180, 28, 28, 0.3);
	transition: all 0.3s ease;
}

	.atf-themes-btn:hover {
		background: linear-gradient(90deg, #C82323 0%, #9B1111 100%);
		box-shadow: 0 0 15px rgba(200, 35, 35, 0.5);
		color: #fff;
		transform: translateY(-2px);
	}

/* Variant met transparante rand (btn-2) */
.atf-main-btn .btn-2 {
	background: transparent;
	border: 1px solid #B41C1C;
	color: #B41C1C;
}

	.atf-main-btn .btn-2:hover {
		background: linear-gradient(90deg, #B41C1C 0%, #8A0E0E 100%);
		color: #fff;
		border-color: transparent;
	}

/* Kleine rode highlights (iconen, sectie-iconen, etc.) */
.atf-sec_icon span,
.atf-services-icon i,
.atf-contact-details i,
.atf-portfolio-icon li,
.atf-testimonial-icon i {
	color: #B41C1C !important;
	background: none;
}

a:hover,
h3:hover {
	color: #B41C1C;
}

a {
	color: var(--thm-base);
	transition: color 0.3s ease;
}

	a:hover {
		color: #B41C1C;
	}

/* ===== Workshops: tekst zichtbaar + geen rode overlay ===== */

/* Verwijder de rode achtergrondkleur */
.atf-single-portfolio {
	background: transparent !important;
}

	/* Verwijder de overlay die opkomt bij hover */
	.atf-single-portfolio:before {
		display: none !important;
	}

	/* Zorg dat de tekst altijd zichtbaar is */
	.atf-single-portfolio .atf-portfolio-content {
		opacity: 1 !important;
		position: absolute;
		bottom: 25px;
		left: 20px;
		color: var(--thm-white);
		text-shadow: 0 0 5px rgba(0,0,0,0.5);
	}

	/* Geen fade of verschuiving bij hover */
	.atf-single-portfolio:hover .atf-portfolio-content {
		opacity: 1 !important;
		bottom: 25px;
	}

	/* Behoud originele typografie */
	.atf-single-portfolio .atf-portfolio-title {
		font-size: 25px;
		font-weight: 600;
		margin-bottom: 5px;
	}

	.atf-single-portfolio .atf-portfolio-post {
		font-size: 14px;
		text-transform: uppercase;
		color: var(--thm-white);
		opacity: 0.9;
	}
	/* ===== Witte lijn onder workshop-titel – altijd zichtbaar ===== */
	.atf-single-portfolio .atf-portfolio-title {
		position: relative;
		display: inline-block;
		padding-bottom: 8px;
		color: #ffffff;
	}

		.atf-single-portfolio .atf-portfolio-title::after {
			content: "";
			position: absolute;
			left: 0;
			bottom: 0;
			width: 80px;
			height: 2px;
			background-color: #ffffff;
			opacity: 1;
			z-index: 2;
		}

/* ===== Zoweb navigatiegedrag verbeterd ===== */

/* Start: transparant */
.navbar-navs {
	background: transparent !important;
	transition: all 0.4s ease;
	padding-top: 1rem;
	padding-bottom: 1rem;
}

.navbar-brand img {
	max-height: 60px;
	margin: 5px 0;
	transition: opacity 0.8s ease;
	opacity: 1;
}

/* Menu-items standaard donker */
.navbar-navs .menu-nav {
	color: #404040 !important;
	transition: color 0.4s ease;
}

	.navbar-navs .menu-nav:hover,
	.navbar-navs .menu-nav.active {
		color: #B41C1C !important;
	}

/* ===== Bij scroll: paarse achtergrond + witte menuletters ===== */
.navbar-navs.scrolled,
.navbar-navs.navbar-collaps.scrolled {
	background: #2B1D6A !important;
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
	padding-top: 0.6rem;
	padding-bottom: 0.6rem;
}

	.navbar-navs.scrolled .menu-nav,
	.navbar-navs.navbar-collaps.scrolled .menu-nav {
		color: #ffffff !important;
	}

		.navbar-navs.scrolled .menu-nav:hover,
		.navbar-navs.navbar-collaps.scrolled .menu-nav:hover {
			color: #B41C1C !important;
		}

	/* Logo verdwijnt bij scroll */
	.navbar-navs.scrolled .navbar-brand img,
	.navbar-navs.navbar-collaps.scrolled .navbar-brand img {
		opacity: 0;
		pointer-events: none;
	}
/* ===== Zoweb scroll-effect ===== */
.navbar-navs {
	background: transparent !important;
	transition: all 0.4s ease;
}

	.navbar-navs.scrolled {
		background: #2B1D6A !important;
		box-shadow: 0 2px 8px rgba(0,0,0,0.2);
	}

	.navbar-navs .menu-nav {
		color: #404040 !important;
		transition: color 0.3s ease;
	}

	.navbar-navs.scrolled .menu-nav {
		color: #ffffff !important;
	}

.navbar-brand img {
	transition: opacity 0.6s ease;
	opacity: 1;
}

.navbar-navs.scrolled .navbar-brand img {
	opacity: 0;
}


 /**************************************
 * 10. END FOOTER DESIGN
 *************************************/

/* Specifieke achtergrond voor telefoons */

/* ===== Mobiele achtergrond met subtiele overlay ===== */
/* ===== Mobiele achtergrond met lichte overlay ===== */
@media (max-width: 767px) {
	.atf-header-area {
		background-image: url('../img/banner/rene_SL.jpg');
		background-size: cover;
		background-position: center;
		position: relative;
		z-index: 1;
	}

		/* Witte overlay */
		.atf-header-area::after {
			content: "";
			position: absolute;
			inset: 0;
			background: rgba(255, 255, 255, 0.60); /* 25% wit — frisse lichte waas */
			z-index: 0;
		}

		/* Zorg dat tekst erboven blijft */
		.atf-header-area .atf-content-details {
			position: relative;
			z-index: 1;
		}
}
