/*  =================================================================
    0.0 :ROOT ~ overwrites or extras (if needed)
    ================================================================== */
    :root {
        --row-width: 1280px; /* max-width */
        --row-half-width: -640px; /* half-width */
        --font-poppins: 'Poppins', sans-serif;
        --font-weight: 400;
        
        --clr-grey_13: #131313;
        --clr-grey_3b: #3b3b3b;
        --clr-grey_5d: #5d5d5d;
        --clr-grey_8a: #8a8a8a;
        --clr-grey_c6: #c6c6c6;
        --clr-grey_dd: #dddddd;
        --clr-grey_f6: #f6f6f6;
        
        --clr-sandstone: #b4ac9f;
		--clr-green: #439e47;
    }


/*  =================================================================
1.0 STANDARDS
================================================================== */
    body, h1, h2, h3, h4, h5, h6, p, ul, ol, label, a, .button, button, input, select, textarea, address {
        font-family: var(--font-poppins);
        /*color: var(--clr-black);*/
		color: var(--clr-grey_5d);
    }

    main.row, .row.outer {
        padding-left: 20px;
        padding-right: 20px;
    }
    .row.outer.collapsed {
        padding-left: 0;
        padding-right: 0;
    }

/*  1.1 BASE - Golors
    -------------------------------------------------------------- */
    .bgGrey_f6 {
        background-color: var(--clr-grey_f6);
    }
    .bgGrey_5d {
        background-color: var(--clr-grey_5d);
    }
    .bgGrey_8a {
        background-color: var(--clr-grey_8a);
    }
	.bgGrey_dd {
		background-color: var(--clr-grey_dd);
	}
    .bgSandStone {
        background-color: var(--clr-sandstone);
    }

/*  1.2 BASE - Clearfix
    -------------------------------------------------------------- */
    .clear, .clearall, .clearfix {
        clear: both;
    }

/*  1.4 BASE - Text stylings
    -------------------------------------------------------------- */
    h1, h2, h3, h4, h5, h6, cite {
        color: var(--clr-grey_5d);
    }
    h1 {
        font-weight: 600;
    }
    h2, .about h3 {
		letter-spacing: -2px;
        padding: 0;
        text-transform: none;
        font-size: 40px;
        line-height: 50px;
        font-weight: 400;
    }
    h2.floated {
        position: relative;		
        padding-right: 200px;
    }
    h3 {
        font-weight: 300;
        font-size: 40px;
        line-height: 50px;
        text-transform: none;
    }
    p, li {
        font-size: 16px;
        line-height: 24px;
        color: var(--clr-grey_5d);
    }

    input[type="submit"],
    button,
    .button,
    .btn {
        background-color: var(--clr-black);
        color: var(--clr-white);
        font-family: var(--font-poppins);
        -webkit-transform: translateZ(0);
                transform: translateZ(0);
    }
	
	@keyframes zoomEffect {
		0% { transform: scale(1); }
		50% { transform: scale(1.2); }
		100% { transform: scale(1); }
	}
	



/*  =================================================================
    x.0 HEADER
    ================================================================== */
	nav {
		position: sticky;
		left: 0;
		top: 0;
		z-index: 999;
		background-color: var(--clr-white);
	}
	nav .logo-link {
		position: relative;
		font-size: 0;
		line-height: 0;
		display: inline-block;
		margin: 20px 0;
		z-index: 1;
	}
	nav .logo-link img {
		width: auto;
		height: 100px;
	}
	nav .row {
		display: flex;
		align-items: center;
		justify-content: space-between;
	}
	nav .topRow {
		position: absolute;
		top: 5px;
		right: 0;
		text-align: right;
	}
	
	nav a {
		color: var(--clr-grey_5d);
	}
	nav .active > a {
		font-weight: 600;
	}
	
	nav .topRow a {
		display: inline-block;
		line-height: 36px;
		font-size: 14px;
	}
	nav .row ul {
		margin-left: auto;
		font-size: 0;
		line-height: 0;
		text-align: left;
	}
	nav .row ul li {
		display: inline-block;
	}
	nav .row ul li:not(:first-of-type),
	nav .topRow a:not(:first-of-type) {
		margin-left: 20px;
	}
	nav .row ul a {
		font-size: 18px;
		line-height: 40px;
	}
	nav .row ul a.cta {
		display: inline-block;
		background-color: var(--clr-green);
		color: var(--clr-white);
		font-size: 16px;
		line-height: 24px;
		padding: 8px 16px;
		border-radius: 40px;
		margin-top: 10px;
	}


    /*  =================================================================
    x.0 HEADER
    ================================================================== */
    header,
    .etalage {
        width: 100%;
        height: 675px;
		overflow: hidden;
    }
	header {
		height: calc(100vh - 140px);
	}
	header.text {
		height: auto;
		padding-top: 10px;
		padding-bottom: 10px;
		font-size: 0;
		line-height: 0;
	}
    header img,
    .etalage img {
        height: 100%;
        object-fit: cover;
    }
	header:not(.withImg) img {
		animation: zoomEffect 40s infinite ease-in-out;
	}
	header.withImg {
		padding-top: 0;
	}
	header.withImg img {
		height: 400px;
	}
    header hgroup,
    .etalage hgroup {
        position: absolute;
        left: 50px;
        top: 50%;
        z-index: 1;
        -webkit-transform: translateY(-70%);
                transform: translateY(-70%);
        display: inline-block;
        width: auto;
    }
    header:not(.text) h1,
    header h2,
    .etalage h2,
    .etalage h3 {
        color: var(--clr-white);
    }
    header h1,
    .etalage h2 {
		letter-spacing: -1px;
        font-size: 50px;
        line-height: 60px;
    }
    header h2 {
        margin-top: 30px;
    }
    .etalage h2 {
        font-weight: 600;
    }
    .etalage h3 {
		letter-spacing: -1px;
        margin-top: 25px;
        padding: 0;
        text-transform: none;
        font-size: 30px;
        line-height: 40px;
        font-weight: 400;
    }
	
	
/*  =================================================================
    x.0 BREADCRUMBS
    ================================================================== */
	.breadcrumb {
		font-size: 14px;
		padding: 0px 16px;
		border-radius: 8px;
	}
	header.withImg .breadcrumb {
		padding-top: 10px;
	}

	.breadcrumb ol {
		list-style: none;
		display: flex;
		flex-wrap: wrap;
		gap: 8px;
		margin: 0;
		padding: 0;
	}

	.breadcrumb li {
		display: flex;
		align-items: center;
		color: #555;
		text-transform: lowercase;
	}

	.breadcrumb li:not(:last-child)::after {
		content: "/";
		margin: 0 8px;
		color: #aaa;
	}

	.breadcrumb a {
		text-decoration: none;
		color: var(--clr-green);
		transition: color 0.2s;
	}

	.breadcrumb a:hover {
		color: #0056b3;
	}
	
	
/*  =================================================================
    x.0 SIDEBAR
    ================================================================== */


/*  =================================================================
    x.0 CONTENT
    ================================================================== */
    .WYSIWYG h1, .WYSIWYG h3, .WYSIWYG h4, .WYSIWYG h5, .WYSIWYG h6,
    .WYSIWYG p,
    .WYSIWYG ol,
    .WYSIWYG ul,
    .WYSIWYG figure {		
        margin-bottom: 20px;
    }
	.WYSIWYG h2 {
		font-size: 30px;
		line-height: 40px;
		font-weight: 600;
	}
	.WYSIWYG h3 {
        font-size: 18px;
        line-height: 36px;
		font-weight: 500;
	}
    .WYSIWYG p strong {
        font-weight: 600;
    }
	.WYSIWYG li {
		position: relative;
		padding-left: 32px;
	}
	.WYSIWYG li:before {
		content: '\EB7B';
		font-family: 'remixicon';
		left: 3px;
		top: 3px;
		position: absolute;
		width: 18px;
		line-height: 18px;
		text-align: center;
		background-color: var(--clr-green);
		border-radius: 50%;
		color: var(--clr-white);
		font-size: 12px;
	}

/*  x.x SLIDER
    -------------------------------------------------------------- */
	section.projects {
		padding-top: 75px/*100px*/;
		padding-bottom: 55px/*80px*/;
	}
    .projects .swiper-slide {
        background-color: #fff;
    }
    .projects .swiper-slide img {
        opacity: .2;
    }
    .projects .swiper-slide.swiper-slide-active img {
        opacity: 1;
    }
    .swiper-3d .swiper-slide-shadow {
        background: transparent;
    }

    .projects .col.img {
        max-width: 67%;
    }
    .projects .col.txt {
        max-width: 33%;
        padding: 150px 100px 50px 50px;
    }
    .projects .col.txt p {
		color: var(--clr-grey_5d);
        font-size: 14px;
        line-height: 20px;
        margin-bottom: 20px;
    }
    .projects .col.txt p b {
        text-transform: uppercase;
		font-size: 18px;
    }
	
    .projects .col.txt .more {
        border: 1px solid #d4d4d4;
		border-radius: 24px;
		display: inline-block;
		width: auto;
		line-height: 32px;
		padding: 7px 20px;
		color: #a2a2a2;
    }
	
    .projects .swiper-button-next {
        right: var(--swiper-navigation-sides-offset, 7%);
    }
    .projects .swiper-button-prev, .projects .swiper-button-next {
        border: 1px solid #d4d4d4;
        border-radius: 50%;
        width: 80px;
        height: 80px;
        color: #a2a2a2;
    }
    .projects .swiper-button-prev:after, .projects .swiper-button-next:after {
        font-size: 20px;
    }
	.summary {
		margin-bottom: 30px;
	}
    .summary li {
		color: var(--clr-grey_5d);
		font-size: 14px;
        line-height: 40px;
    }
    .summary i {
        font-size: 16px;
        width: 28px;
        height: 28px;
        line-height: 26px;
        text-align: center;
        border: 1px solid #d4d4d4;
        color: #a2a2a2;
        display: inline-block;
        border-radius: 50%;
        margin-right: 10px;
    }

    /* aBOUT */
	.about .img img {
        height: 100%;
        object-fit: cover;
    }
    .about .text {
        background-color: var(--clr-grey_dd);
        padding: 100px 50px 50px;
    }
    .about h3 {
        margin-bottom: 50px;
    }
    .about p {
        /*font-size: 20px;
        line-height: 36px;
        margin-bottom: 36px;
        font-weight: 300;*/
        margin-bottom: 24px;
    }
	.about a.button {
		display: inline-block;
		background-color: transparent;
		box-shadow: inset 0 0 0 1px var(--clr-grey_5d);
		color: var(--clr-grey_5d);
		font-size: 16px;
		line-height: 24px;
		padding: 8px 16px;
		border-radius: 40px;
	}

/*  x.x TIMELINE
    -------------------------------------------------------------- */
    .timeline {
        padding-top: 80px;
		padding-bottom: 75px;
        counter-reset: section;
    }
    .timeline:after {
        content: '';
        position: absolute;
        right: 64px;
        top: 0;
        width: 2px;
        height: 100%;
        background-color: var(--clr-grey_dd);
    }
	.timeline .card {
        position: relative;
        padding: 25px 0;
        padding-right: 100px;
	}
	.timeline .card:first-of-type {
        padding-top: 0;
	}
	.timeline .card:last-of-type {
        padding-bottom: 0;
	}
	.timeline .card h3 {
        margin-bottom: 15px;
        font-weight: 600;
        font-size: 30px;
        line-height: 40px;
	}
	.timeline .card h3::before {
        counter-increment: section;
        content: counter(section) ". ";
	}
	.timeline .card p {
        margin-bottom: 0;
	}
	.timeline .card .iconImg {
        position: absolute;
        right: 15px;
        top: 50%;
        -webkit-transform: translate(0,-50%);
                transform: translate(0,-50%);
        width: 90px;
        height: 90px;
        border-radius: 50%;
        background-color: var(--clr-grey_dd);
        overflow: hidden;
        z-index: 1;
	}

/*  x.x FAQ
    -------------------------------------------------------------- */
	.etalage {
		padding-top: 0;
		padding-bottom: 0;
	}

/*  x.x FAQ
    -------------------------------------------------------------- */
    .faq {
		background-color: var(--clr-grey_dd);
		padding-top: 55px/*80px*/;
        padding-bottom: 75px/*100px*/;
    }
    .faq h2 {
        margin-bottom: 30px;
    }
    details,
    details summary,
    details answer {
        position: relative;
        display: block;
        width: 100%;
    }

    details {
        border-top: 1px solid #ccc;
    }
    .faq details:last-of-type {
        border-bottom: 1px solid #ccc;
    }

    details summary,
    details p {
        color: var(--clr-grey_5d);
    }

    details summary {
        line-height: 90px;
        font-size: 20px;
        padding: 0 38px;
		font-weight: 500;
    }
    details answer {
        padding: 0 114px 38px 38px;
    }
    details p {
        line-height: 28px;
        font-size: 18px;
		font-weight: 300;
    }
    details summary:after {
        content: '\F4B2';
        position: absolute;
        right: 38px;
        top: 50%;
        -webkit-transform: translateY(-50%);
                transform: translateY(-50%);
        font-family: 'remixicon';
        line-height: 40px;
    }
    details[open] summary:after {
        content: '\F1AF';
    }

/*  x.x REVIEWS
    -------------------------------------------------------------- */
    section.reviews {
        padding-top: 75px/*100px*/;
		padding-bottom: 67px/*92px*/;
    }
    section.reviews h2 {
        margin-bottom: 30px;
    }
    .swiper.reviews {
        padding-bottom: 70px;
    }
    .review-text {
        background-color: var(--clr-grey_f6);
        padding: 30px;
        font-size: 16px;
        margin-bottom: 15px;
		font-weight: 300;
		min-height: 300px;
    }
    .review-author,
    .review-location {
        text-align: center;
    }
    .review-author {
        font-weight: bold;
        color: var(--clr-grey_3b);
        font-size: 20px;
        margin-bottom: 10px;
    }
    .review-location {
        font-size: 14px;
        color: var(--clr-grey_c6);
    }
	
/*  x.x SWIPER
    -------------------------------------------------------------- */
    .swiper.reviews,
	.socialSlider {
        padding-bottom: 70px;
    }
    .swiper-pagination-bullet {
        opacity: 1;
        background-color: var(--clr-grey_f6);
        width: 16px;
        height: 16px;
    }
    .swiper-pagination-bullet.swiper-pagination-bullet-active {
        background-color: var(--clr-grey_c6);
    }

/*  x.x REVIEWS
    -------------------------------------------------------------- */	
	section.socials {
		padding-top: 75px/*100px*/;
		padding-bottom: 75px/*100px*/;
	}
	.socials h2 {
		margin-bottom: 30px;
	}
	.socials datetime {
		display: block;
		font-size: 14px;
		text-align: center;
	}

/*  x.x PACKAGES
    -------------------------------------------------------------- */
	section.packages {
		padding-top: 75px/*100px*/;
		padding-bottom: 75px/*100px*/;
	}

/*  x.x CTA
    -------------------------------------------------------------- */
	section.cta {
		padding-top: 75px/*100px*/;
		padding-bottom: 75px/*100px*/;
	}
	section.packages + section.cta {
		padding-top: 0;
	}
	
	.cta .row {
		text-align: center;
	}
	.cta a {
		display: inline-block;
		padding: 22px 50px;
		background-color: var(--clr-green);
		color: var(--clr-white);
		line-height: 26px;
		font-size: 20px;
	}
	a.cta {
		display: inline-block;
		background-color: var(--clr-green);
		color: var(--clr-white);
		font-size: 16px;
		line-height: 24px;
		padding: 8px 16px;
		border-radius: 40px;
		margin-top: 20px;
	}

/*  x.x PROJECTS
    -------------------------------------------------------------- */	
	.projects .gridFrame {
		row-gap: 60px;
	}
	.projects article {
		font-size: 0;
		line-height: 0;
	}
	.projects.overview img {
		height: 275px;
		object-fit: cover;
		margin-bottom: 15px;
	}
	.projects h3 {
		line-height: 30px;
		font-size: 20px;
		font-weight: 500;
		margin-bottom: 0px;
	}
	.projects.single h3 {
		margin-bottom: 10px;
	}
	.projects h3.marged {
		margin-bottom: 10px;
	}
	.projects p {
		line-height: 28px;
		font-size: 18px;
		font-weight: 300;
		margin-bottom: 15px;
	}
	.projects .small p {
		line-height: 24px;
		font-size: 16px;
	}
	.projects.overview .summary {
		text-align: left;
		font-size: 0;
		line-height: 0;
		vertical-align: top;
		margin-bottom: 15px;
	}
    .projects.overview .summary li {
		display: inline-block;
		/*width: 50%;*/
    }
    .projects.overview .summary li:not(:last-of-type) {
		margin-right: 23px;
    }
	.projects span.fakeBtn {
		display: inline-block;
		background-color: var(--clr-green);
		color: var(--clr-white);
		font-size: 16px;
		line-height: 24px;
		padding: 8px 16px;
		border-radius: 40px;
	}
	.projects .thumbSwiper .swiper-slide img {
		opacity: .2;
    }
	.projects .thumbSwiper .swiper-slide.swiper-slide-thumb-active img {
		opacity: 1;
	}
	
/*  x.x CTA
    -------------------------------------------------------------- */
	form #andersInputContainer:not(.visible), form #yesInputContainer:not(.visible), form #personsInputContainer:not(.visible), form #importanceInputContainer:not(.visible), form #socInputContainer:not(.visible) {
		display: none;
	}
	form #andersInputContainer, form #yesInputContainer, form #personsInputContainer, form #importanceInputContainer, form #socInputContainer {
		position: absolute;
		left: 300px;
		bottom: 0;
		width: 300px;
	}
	form #yesInputContainer {
		left: 100px;
		bottom: 35px;
	}
	form #andersInputContainer input, form #yesInputContainer input, form #personsInputContainer input, form #importanceInputContainer input, form #socInputContainer input {
		width: 100%;
		max-width: none;
	}
	form .row {
		padding-bottom: 20px;
	}
	form h3 {
		line-height: 30px;
		font-size: 20px;
		font-weight: 500;
	}
	form h3 + p {
		/*line-height: 28px;
		font-size: 18px;
		font-weight: 300;*/
		font-size: 14px;
		margin-bottom: 15px;
	}
	form .floated {
		position: relative;
		padding-left: 200px;
		margin-bottom: 5px;
	}
	form .floated span {
		display: block;
		width: 100%;
		max-width: 200px;
		position: absolute;
		left: 0;
		top: 0;
		line-height: 32px;
		font-size: 14px;
	}
	
	form .floated.full {
		padding-left: 0;
	}
	form .floated.full span {
		position: relative;
		left: auto;
		top: auto;
		max-width: none;
		/*float: left;*/
	}
	form .floated.full {
		padding-left: 0;
	}
	
	form input,
	form textarea,
	form select {
		display: block;
		width: 100%;
		/*max-width: 100%;
		height: 28px;*/
		background-color: #efefef /*var(--clr-grey_dd)*/;
		line-height: 32px;
		padding: 0px 10px;
		border-radius; 14px;
	}
	select {
		background-position: center right 4px;
	}
	
	input::-webkit-input-placeholder, select::-webkit-input-placeholder, textarea::-webkit-input-placeholder {
        color: #5d5d5d;
    }
    input::-moz-placeholder, select::-moz-placeholder, textarea::-moz-placeholder {
        color: #5d5d5d;
    }
    input:-ms-input-placeholder, select:-ms-input-placeholder, textarea:-ms-input-placeholder {
        color: #5d5d5d;
    }
    input:-moz-placeholder, select:-moz-placeholder, textarea:-moz-placeholder {
        color: #5d5d5d;
    }
	
	form textarea {
		height: 96px;
	}
	form input.street, form input.nr, form input.zip, form input.place {
		float: left;
	}
	form input.street {
		max-width: calc(80% - 5px);
		margin-right: 5px;
		margin-bottom: 5px;
	}
	form input.nr {
		max-width: 20%;
		margin-bottom: 5px;
	}
	form input.zip {
		max-width: calc(40% - 5px);
		margin-right: 5px;
	}
	form input.place {
		max-width: 60%;
	}
	form .optGroup input {
		position: relative;
		float: left;
		max-width: 32px;
		margin: 0 0 5px 0;
		line-height: 32px;
		padding: 0px 10px;
	}
	form .optGroup input:after {
		content: '';
		position: absolute;
		width: 12px;
		max-width: none;
		margin: 0;
		height: 12px;
		padding: 0px;
		left: 10px;
		top: 10px;
		background-color: transparent;
	}
	form .optGroup input:checked:after {
		background-color: var(--clr-grey_5d);
	}
	form .optGroup input[type="checkbox"],
	form .optGroup input[type="radio"] {
		padding: 0;
		height: 32px;
	}
	form .optGroup label {
		float: left;
		display: block;
		line-height: 32px;
		width: calc(100% - 32px);
		padding-left: 10px;
		margin: 0 0 5px 0;
		font-size: 14px;
	}
	form .optGroup label.before-next-input {
		width: calc(50% - 35px);
	}
	form .optGroup label.before-next-input + input {
		float: left;
		display: block;
		width: 50%;
		max-width: none;
		margin: 0 0 5px 0;
	}
	form .floated input[type="file"] {
		padding-left: 0;
	}
	form .floated ::file-selector-button {
		border: 2px solid transparent;
		padding: 0 10px;
		border-radius: 0;
		background-color: #d5d5d5;
		line-height: 28px;
		margin-right: 30px;
	}
	
	form button {
		display: inline-block;
		background-color: var(--clr-green);
		color: var(--clr-white);
		font-size: 16px;
		line-height: 24px;
		padding: 8px 16px;
		border-radius: 40px;
		margin-top: 10px;
	}
	
	.news {
		padding-top: 75px/*100px*/;
		padding-bottom: 75px/*100px*/;
	}
	.news .btn {
		display: inline-block;
		background-color: var(--clr-green);
		color: var(--clr-white);
		font-size: 16px;
		line-height: 24px;
		padding: 8px 16px;
		border-radius: 40px;
	}
	.news .btn.next:not(.disabled),
	.news .btn.prev:not(.disabled) {
		background-color: rgba(67,158,71,0.2);
		box-shadow: 0px 0px 0px 1px rgb(67,158,71) inset;
		color: rgb(67,158,71);
	}
	.news .btn.disabled {
		background: #efefef;
		color: #d5d5d5;
	}
	.news .btn.overview i {
		display: inline-block;
		-webkit-transform: rotate(90deg);
				transform: rotate(90deg);
	}
	.news .navi {
		margin-top: 40px;
	}
	.news .navi span {
		float: right;
	}

	.contact {
		padding-top: 75px/*100px*/;
		padding-bottom: 75px/*100px*/;
	}
	.contactform li {
		position: relative;
		line-height: 0;
		font-size: 0;
	}
	.contactform label,
	.contactform small,
	.contactform input,
	.contactform select,
	.contactform textarea {
		display: inline-block;
		vertical-align: top;
		font-size: 16px;
		line-height: 24px;
		padding: 4px 10px;
		margin-bottom: 10px;
	}
	.contactform .g-recaptcha {
		display: inline-block;
		vertical-align: top;
		margin-bottom: 10px;
	}
	.contactform label {
		padding: 4px 0;
		width: /*300px*/100%;
	}
	.contactform small {
		width: calc(100% - 24px);
		font-size: 14px;
		line-height: 20px;
	}
	.contactform input,
	.contactform select,
	.contactform textarea {
		width: /*calc(100% - 300px)*/100%;
		border: 1px solid var(--clr-grey-d5d);
		color: var(--clr-grey-585);
	}
	.contactform textarea {
		height: 120px;
	}
	.contactform input[type="checkbox"] {
		padding: 0;
		margin: 4px 0;
		width: 24px;
		height: 24px;
		position: relative;
	}
	.contactform input[type="checkbox"]:after {
		content: '';
		position: absolute;
		left: 3px;
		top: 3px;
		width: 16px;
		height: 16px;
		background-color: transparent;
	}
	.contactform input[type="checkbox"]:checked:after {
		background-color: var(--clr-orange);
	}
	

/*  =================================================================
    FOOTER
    ================================================================== */
	footer {
		background-color: var(--clr-grey_dd);
		padding-top: 25px/*100px*/;
		padding-bottom: 25px/*100px*/;
	}
    footer .socials p {
        /*color: var(--clr-white);*/
        display: inline;
        line-height: 60px;
    }
	footer a {
		color: var(--clr-grey_5d);
	}

    footer .socials span {
        float: right;
    }

    footer .socials a {
        display: inline-block;
        width: 24px;
        line-height: 24px;
        margin-top: 18px;
        text-align: center;
        background-color: rgba(0, 0, 0, 0.1);
        border-radius: 4px;
        margin-left: 4px;
    }

    footer h4 {
        /*padding-right: 20px;
        border-bottom: 2px solid var(--clr-grey_3b);*/
		font-weight: 600;
        display: inline-block;
        line-height: 30px;
        margin-bottom: 10px;
    }
    footer address p {
        position: relative;
        /*padding-left: 30px;*/
        margin-bottom: 16px;
    }
    /*footer address i {
        position: absolute;
        left: 0;
        top: 0;
    }*/

    footer figcaption {
        position: absolute;
        z-index: 1;
        left: 0;
        bottom: 0;
        color: #fff;
        padding: 10px;
        width: 100%;
    }

    /*  =================================================================
    MEDIA QUERIES
    ================================================================== */
    /* MOBILE */
    @media only screen and (min-width: 572px) { }

    @media only screen and (min-width: 572px) and (orientation: landscape) { }
    @media only screen and (min-width: 572px) and (orientation: portrait) { }

    /* IPADS portrait */
    @media only screen and (min-width: 768px) and (min-height: 600px) { }

    /* IPADS */
    @media only screen and (min-width: 768px) {

        .timeline:after {
            right: auto;
            left: calc(50% - 1px);
            top: -20px;
            height: calc(100% + 20px);
        }
        .timeline .card {
            padding: 0;
            margin-bottom: 25px;
        }
        .timeline .card:first-of-type {
            padding-top: 0;
        }
        .timeline .card:last-of-type {
            padding-bottom: 0;
        }
        .timeline .card:nth-of-type(even) {
            padding-left: 60%;
        }
        .timeline .card:nth-of-type(odd) {
            padding-left: 0;
            padding-right: 60%;
        }
        .timeline .card .iconImg {
            right: auto;
            left: 50%;
            -webkit-transform: translate(-50%,-50%);
                    transform: translate(-50%,-50%);
        }

    }

    /* IPADS landscape AND mini laptops */
    @media only screen and (min-width: 960px) {
      
        .mobileBTN {
            display: none;
        }
		.projects .swiper-button-next {
			right: var(--swiper-navigation-sides-offset, 3%);
		}
		
		.contactform label {
			width: 300px;
		}
		.contactform small {
			width: calc(100% - 324px);
		}
		.contactform input,
		.contactform select,
		.contactform textarea {
			width: calc(100% - 300px);
		}
		.contactform button {
			margin-left: 300px;
		}

    }

    /* SMALL SCREENS */
    @media only screen and (min-width: 1280px) {
		
	}

    /* WEIRD HEADER TEXT BREAKPOINT ~ must be paddings or margins */
    @media only screen and (min-width: 1340px) { }

    /* SMALL SCREENS */
    @media only screen and (min-width: 1440px) {
		
		.projects .swiper-button-next {
			right: var(--swiper-navigation-sides-offset, 7%);
		}
		
		.about .text {
			padding: 100px;
		}
		
	}
    @media only screen and (min-width: 1600px) { }
    @media only screen and (min-width: 1920px) {
        :root {
            --row-width: 1620px; /* max-width */
            --row-half-width: -810px; /* half-width */
        }
    }

/*  =================================================================
    TOUCH DEVICES
    ================================================================== */
    @media (pointer:coarse) { }

/*  =================================================================
    HOVER STATES
    ================================================================== */
    @media (any-hover: hover) { }