/*
 *
 * Theme main styles
 */

* {
    box-sizing: border-box;
}


:root {
    --main-bg-color: #f6f6f6;
    /* --main-bg-color:rgb(235,246,253, 0.8); codesurf blue off white */
    --main-bg-color:#f7f6f6; /* new background color theme 2023 */
    --main-background-color:rgb(235,246,253, 0.4); 

	--main-bg-color-darker: #f0f0f0;
    --main-bg-color-overlay-dark: rgb(16,117,183, 0.8);
    --color-white: #fff;
    --color-black: #000;
	--main-text-color: var(--color-black);

    /* For codesurf.eu adapted colors */
    --color-codesurf-blue: #0071bb;
    --color-codesurf-blue-darker:#002944;
    --color-primary: var(--color-codesurf-blue);
    --color-codesurf-rgba: 0, 114, 188;
    --color-codesurf-blue-transparent: rgba(0, 114, 188, 0.5);
    --color-codesurf-blue-lighter: #bbe4ff;
    --color-codesurf-blue-super-light-rgb: 238,248,255;	
    --color-dark-blue: #000055;
    --color-accent: #e26409; /* Orange */
    --color-accent-transparent: rgba(247,136,56,0.5);


    /* If we implement more codesurf colors */
    --color-secondary: var(--color-codesurf-blue);
    --color-tertiary: rgba(37,211,102); /* whatsapp green */
    --color-tertiary-rgba: 37, 211, 102;
    --color-secondary-hover: #fff;

    --color-fishes: rgb(250, 107, 5, 0.7);
    --color-drop-animation: var(--color-codesurf-blue);

}


hr.visually-hidden {
	display: block;
	height: 0px;
	border: 0;
	border-top: 0px solid #ccc;
	margin: 0;
	padding: 0;
	margin-top: 0;
	margin-bottom: 0;
	visibility: hidden;
	width: 100%;
}


html, body {
    margin: 0;
    padding: 0;
    border: 0;
    /* background-color: var(--main-bg-color-darker); */
    scroll-behavior: smooth;
    /* background-image: linear-gradient(
      var(--main-bg-color), 
      var(--main-bg-color)
    ); */
}

body {
    min-height: 100%;
    height: auto;
    overflow-x: hidden;
    font-family: 'Caros', sans-serif;
    font-size: 18px;
    font-weight: 300;
    letter-spacing: 0.5px;

	/* background-image: url("../img/bg-lines.png");
	background-position: center top;
	background-repeat: repeat-y;
	background-size: 50% auto; */

}

a {
    color: var(--color-black);
    text-decoration: underline;
    outline: 0;
}

a:hover {
    color: var(--color-black);
    text-decoration: underline;
}

p a:hover,
a.uline:hover {
    text-decoration: underline;
}

@media only screen and (max-width: 600px) {}

@media only screen and (min-width: 1000px) {}

h1, h2, h3, button, .button, nav {
    font-family: 'Caros', sans-serif;
}

h1, h2, h3 {
    word-wrap: break-word;
    text-transform: none;
    letter-spacing: 1px;
    white-space: normal;
}

.page-title {
    margin-top: 100px;
}
.container {
    /* max-width: 980px; */
    max-width: 1080px;
}
.swiper-slide .container {
	height: 100%;
}
.container-small,
.small-text-col .main > .container {
    max-width: 780px;
}
.main > .container,
.main > article {
    padding-top: 40px;
}

a.anchor {
    display: block;
    position: relative;
    top: -80px;
    visibility: hidden;
}

.container-wide {
    max-width: 9999px;
    width: auto;
    padding: 0 20px;
}

/* prevent double width */
.container .container {
    width: 100%;
}
.container-text {
    max-width: 700px;
}
.text-uppercase {
    text-transform: uppercase;
}
.tiny-text {
    font-weight: 300;
    font-size: 9px;
}
.flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
    align-content: center;
}
.flex-center {
    justify-content: center;
}
.flex-center > * {
    margin-left: 20px;
    margin-right: 20px;
}
.flex-top {
    align-items: flex-start;
}
.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    /* grid-template-columns: repeat(auto-fit, minmax(260px, 325px)); */
    grid-gap: 2rem;
    justify-content: center;
}

section {
    padding: 100px 0;
	position: relative;
}

.align-right {
    text-align: right;
}

.content.hidden {
    display: none;
}



/*
 * Header
 * ======================================================== */
.header {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.6);
    transition: all 250ms ease-in-out;
}

.header.sticky {
    background: var(--color-white);
    box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.15);
}

.header .menu-bar,
.footer .container {
    display: flex;
    justify-content: space-between;
    align-items: start;
    padding: 20px 0;
}

.header .menu-bar {
    padding: 10px 0;
}

.footer .container {
    padding-left: 20px;
    padding-right: 20px;
}
.logo img {
    width: 140px;
    height: auto;
    object-fit: cover;
}

.header a.logo span {
    display: none;
}

.logo svg {
    width: 100px;
    height: auto;
    overflow: visible !important;
}

h1, h2, h3 {
    letter-spacing: .05rem;
}
h1.huge {
	text-transform: uppercase;
	font-size: 110px;
	font-weight: 800;
    color: var(--color-codesurf-blue);
}

h1.huge.market {
	font-size: 70px;
    line-height: 1.4;
}

.button-contact-us {
    position: relative;
    width: 145px;
    height: auto;
    background: var(--color-accent);
    border: 1px solid var(--color-accent);
    /* padding: 30px 80px 30px 50px; */
    text-align: center;
    line-height: auto;
    box-shadow: 0 0 15px 0 rgba(0,0,0,0.3);
    /* box-shadow: 0 0 15px 0 rgba(var(--color-codesurf-rgba), 0.3); */
    color: var(--color-white);
    
    transition: all 250ms ease-in-out;
    z-index: 3;
    transform: scale(1);

    display: flex;
    justify-content: center;
}

.button-contact-us.hide-cta {
    display:none;
}

.button-contact-us:hover {
    /* box-shadow: 0 0 15px 0 rgba(var(--color-codesurf-rgba), 0.5); */
    box-shadow: 0 0 15px 0 rgba(0,0,0,0.5);
    transform: scale(1.05);
    color: var(--color-white);
}


@media only screen and (max-width:1050px) {
    h1.huge.market {
	    font-size: 60px;
    }
}

@media only screen and (max-width:950px) {
    h1.huge.market {
	    font-size: 50px;
    }
}
@media only screen and (max-width:550px) {
    h1.huge.market {
	    font-size: 40px;
    }
    .button-contact-us {
        padding: 0 15px;
        width: 115px;
    }
}

@media only screen and (max-width:400px) {
    
    .button-contact-us {
        font-size:9px;
        padding: 0 8px;
        width: 90px;
    }
}

h1.huge-intro-text {
	font-size: 32px;
	font-weight: 300;
}

.tagline strong,
.tagline span {
	color: var(--color-white);
}



section.heroSlider {
	padding-top: 8rem;
	padding-bottom: 200px; /* section.proposition-before:before ;))) */
}
section.heroSlider .swiper-container {
	height: 540px;
}
section.heroSlider .swiper-slide .container {
	display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    align-content: center;
}



section:not(.heroSlider) {
    /* background-color: var(--main-bg-color-overlay); */
	background-color: var(--color-primary);
    
}

section.proposition {
	position: relative;
	padding: 0;
}
.skewed-before {
    position: absolute;
    width: 100%;
    height: 110px;
    top: -212px;
    /* overflow: hidden; */
    z-index: 1;
}

/*

.skewed-before.active {
	opacity: 1;
}

.skewed-before:before {
    content: " ";
    width: 140vw;
    height: 110px;
    background:#f6f6f6;
    background: var(--main-background-color);
    background: rgb(235,246,253, 1);
    background: #e8f3fa;
    background: #deedf7;
    position: absolute;
    top: 0;
    transform-origin: right top;
    right: -20vw;
    transform: rotate(-3deg);
}



.transition {
    position: relative;
    content: " ";
    clip-path: polygon(0 0, 100% 0, 100% 0%, 0% 100%);
    width: 120vw;
    height: 110px;
    display: block;
    background: var(--main-background-color);
    background: var(--color-codesurf-blue-lighter);
    z-index: 100;
}

*/


.proposition-before-wave {
	position: absolute;
	width: 100%;
	height: 400px;
	top: -400px;
	overflow: hidden;
	z-index: 2;
	opacity: 1;
}
.proposition-before-wave.off {
	opacity: 0;
}
.waveZ {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    z-index: 1;
}


.button.button-us,
.button.button-wow {
	position: relative;
	top: -200px;
	width: auto;
	height: auto;
	background: var(--color-white);
	border: 1px solid var(--color-white);
	padding: 30px 80px 30px 50px;
	text-align: left;
	line-height: auto;
    /* box-shadow: 0 0 10px 0 rgba(0,0,0,0.1); */
    box-shadow: 0 0 15px 0 rgba(var(--color-codesurf-rgba), 0.3);
	color: var(--color-black);
	transition: all 250ms ease-in-out;
	z-index: 3;
	transform: scale(1);
}
.button.button-us {
    top: 0;
}
.button.button-us:after,
.button.button-wow:after {
	content: "›";
	position: absolute;
	color: #dcdcdc;
	font-size: 74px;
	right: 20px;
	top: 0;
	height: 100%;
	display: flex;
	flex-direction: column;
	justify-content: center;
	transition: all 250ms ease-in-out;

}

.button.button-wow:after {
	/* content: "›"; */
    font-family: "FontAwesome"; 
    font-weight: 900; 
    content: "\f25a"; /* pointer */
    font-size: 77px;

    top: 78px;
    right:0;
    transition: all 0.25s ease-in-out;
}

@media only screen and (max-width:800px) {
   .button.button-wow:after {
        top: 11px;
        right:-23px;
    }
}

@media only screen and (max-width:600px) {
   .button.button-wow:after {
       font-size: 60px;
        top: 40px;
        /* right:-17px; */
    }
}


.button.button-us:hover,
.button.button-wow:hover {
    /* box-shadow: 0 0 15px 0 rgba(0,0,0,0.15); */
    box-shadow: 0 0 15px 0 rgba(var(--color-codesurf-rgba), 0.5);
	transform: scale(1.02);
}

.button.button-wow:hover:after {
    color: var(--color-codesurf-blue-lighter);
    font-size:100px;
}

.button.button-us:hover:after {
	color: var(--color-secondary);
}

.button-us .button-title,
.button-wow .button-title {
	display: block;
	font-size: 34px;
	font-weight: 600;
}

.button-us .button-subtitle,
.button-wow .button-subtitle {
	display: block;
	font-size: 34px;
	font-weight: 300;
	text-transform: none;
}

/*
 * Section who-we-are
 * ======================================================== */

 section.who-we-are {
     padding-top: 0;
	 padding-bottom: 80px;
 }

@media only screen and (max-width:800px) {
    section.who-we-are {
        margin-top: -100px;
        z-index: 100;
    }
    .local-market section.who-we-are {
        /* margin-top: 0; */
        padding-top:40px;
        z-index: 100;
    }

    .local-market section.who-we-are .tagline {
        font-size:28px;
    }
}

@media only screen and (max-width:750px) {
    .local-market section.who-we-are .tagline {
        text-align:center;
    }
}

/* @media only screen and (max-width:800px) {
     section.who-we-are {
        margin-top: -150px;
    }
} */



 /*
 * Section homepage portfolio
 * ======================================================== */

 section#portfolio.portfolio {
    padding-top:0;
    margin-bottom: 0;
    position: relative;
    padding-bottom: 200px;
    background: transparent;
 }

 .local-market section#portfolio.portfolio {
     margin-top:150px;
     padding-bottom: 50px;
 }



.portfolio-bg-video {
    margin-top:-100px;
    width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
    overflow: hidden;
 }

 #portfolio-bgvid {
    object-fit: cover;
    width: 100%;
    height: 100%;
    filter: grayscale(30%);
}

.overlay {
    background: rgba(var(--color-codesurf-rgba) , 0.4);
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 100%;
}


 .h2_portfolio {
     color: var(--color-white);
 }
 .local-market .h2_portfolio {
     /* color: var(--color-codesurf-blue); */
 }



 /*
 * Section homepage services
 * ======================================================== */

    section.services {

        height: auto;
        background: var(--color-white);
        padding-bottom:170px;
    }
    .local-market section.services {
        padding-bottom:50px;
    }

    .h2_services {
        color: var(--color-codesurf-blue);
    }

    .services-overview {
        margin-top: 50px;
        display:grid;
        grid-template-columns: 1fr 1fr;
        gap: 40px 40px;
        /* gap: 2rem; */
    }

    .services-overview a {
        text-decoration: none;
    }

    @media only screen and (max-width:1000px) {
        .services-overview {
        grid-template-columns: 1fr;
        gap: 2rem;
        }
    }

    .services-service {
        width:100%;
        height:330px;  
        display:flex;
        background-color: var(--color-white);
        box-shadow: 0 0 5px 0 rgba(var(--color-codesurf-rgba), 0.5);
        transition: all 250ms ease-in-out;
        
    }

    .services-service:hover {
        box-shadow: 0 0 15px 0 rgba(var(--color-codesurf-rgba), 0.5);
        transform: scale(1.02);
    }

        .service-panel-right {
            position:relative;
            color: var(--color-white);
            width:50%;
            padding: 15px;
            background: var(--color-codesurf-blue); 
            overflow: hidden;
        }

        @media only screen and (max-width: 550px) {
            .service-panel-right {
                display: none;
            }
        }



            .panel-right-inner {
                position: relative;
                width: 100%;
                height: 100%;
                overflow: hidden;

                display: flex;
                flex-direction: column;
                justify-content: center;
            }



            .service-keywords {
                /* position: absolute; */
                top: -2px;
                height: auto;
                font-size: 145%;
                padding: 2px;
             }

            span.service-key {
                padding: 0px 10px;
                word-break: break-all;
            }


            /* key classes   */

            .kc-xtra-large { font-size: 130% }
            .kc-bold { font-weight: 600 }
            .kc-small { font-size: 80% }
            .kc-italic { font-style: italic }


        .service-panel-left {
            position: relative;
            width:50%;
            padding: 15px;
    
        }

        @media only screen and (max-width: 550px) {
            .service-panel-left {
                 width:100%;
            }
        }

            .panel-inner-left {
                position: relative;
                width:100%;
                height:100%;
            }

            .service-title {
                position: relative;
                padding: 8px 5px;
                color:  var(--color-white);
                z-index: 5;
                background-color: var(--color-codesurf-blue-transparent);
                background-color: rgba(var(--color-codesurf-rgba), 0.7);
                text-transform: uppercase;
                font-size: 24px;
                line-height: 1;
                font-weight: 800;

            }

            @media only screen and (max-width: 550px) {
            .service-title {
                 padding: 18px 5px;
            }
        }

            .service-image-box {
                position: absolute;
                left:0;
                top:0;
                width:100%;
                height:100%;

            }

            .service-image-box img {
                
                width:100%;
                height:100%;
                object-fit: cover;
                /* position: sticky; */
                top: 0;

            }

            .button.button-service {
                position: absolute;
                bottom: 5%;
                right:7%;
                line-height:30px;
                width: auto;
                height: auto;
                background: var(--color-white);
                border: 1px solid var(--color-white);
                padding: 5px 48px 5px 15px;
                font-size: 0.8em;;
                text-align: left;
                line-height: auto;
                /* box-shadow: 0 0 10px 0 rgba(0,0,0,0.1);
                box-shadow: 0 0 15px 0 rgba(var(--color-codesurf-rgba), 0.3); */
                color: var(--color-black);
                transition: all 250ms ease-in-out;
                z-index: 3;
                transform: scale(1);
            }

            .button.button-service::after {

                content: "›";
                position: absolute;
                color: #dcdcdc;
                font-size: 45px;
                right: 10px;
                top: 0;
                height: 100%;
                display: flex;
                flex-direction: column;
                justify-content: center;
                transition: all 250ms ease-in-out;

            }

             .button.button-service:hover::after {
                 color: var(--color-secondary);
             }

             /* https://stackoverflow.com/questions/17788990/access-the-css-after-selector-with-jquery */
             
            .button.button-service .changed:after { 
            /* this selector is more specific, so it takes precedence over the other :after */
                /* content: "›";
                position: absolute;
                color: #dcdcdc;
                font-size: 45px;
                right: 10px;
                top: 0;
                height: 100%;
                display: flex;
                flex-direction: column;
                justify-content: center;
                transition: all 250ms ease-in-out; */

                color: var(--color-secondary);
            }


/*
 * Single service
 * ======================================================== */

.container-linear-gradient {
    background: linear-gradient(var(--main-background-color), var(--color-codesurf-blue));
    width: 100vw;
}

.container-single,
.faq-page {
    /* background: var(--color-codesurf-blue-super-light); */
    background: rgba(var(--color-codesurf-blue-super-light-rgb), 0.8);

}
 
 section.service-header {
        background-color: transparent;
        padding: 25px 0 80px 0;
 }

 section.service-header a {
     text-decoration: none;
 }

 .service-header .services-service {
     box-shadow: 0 0 15px 0 rgba(var(--color-codesurf-rgba), 0.3);

 
 }


/*
 * Regular content
 * ======================================================== */

.entry-content h1 {
    font-size: 3.4rem;
    color: var(--color-codesurf-blue);
}

.entry-content h2, article h2 {
    font-size: 2.8rem;
    font-weight: 300;
    color: var(--color-codesurf-blue);
}
.entry-content h3 {
    font-size: 2.2rem;
    color: var(--color-codesurf-blue);
}

.entry-content ul {
    list-style: disc inside;
}

#primary {
    min-height: 640px;
}

#breadcrumbs {
    padding-bottom: 40px;
    color: #999;
    font-size: 13px;
}

blockquote {
    width: 60%;
    margin-left: auto;
    margin-right: auto;
    font-size: 140%;
    font-weight: 100;
}

img.alignright {
    float: right;
    margin-left: 20px;
    max-width: 50%;
    width: auto;
    height: auto;
}

img.alignleft {
    float: left;
    margin-right: 20px;
    max-width: 50%;
    width: auto;
    height: auto;
}

.entry-content a:not(.button) {
    color: var(--color-tertiary);
    text-decoration: underline dotted;
    font-weight: 400;
}

.entry-content a:not(.button):hover {
    color: var(--color-black);
    text-decoration: underline;
}


/* PORTFOLIO  */

.portfolio-overview.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 2rem;
    justify-content: center;
    margin-top: 50px;
}

.grid a.item {
    cursor: pointer;
    /* overflow: hidden; */
    height: 100%;
}
.grid .item {
    position: relative;
}

.grid .item img {
    display: block;
    max-width: 100%;
    width: auto;
    height: auto;
}

.flip-container {
	perspective: 1000px;
}
.flip-container:hover .flipper,
.flip-container.hover .flipper {
	transform: rotateY(180deg);
}
.flip-container,
.front,
.back {
	height: 300px;
	width: 100%;
}
.flipper {
	transition: 1.1s;
	transform-style: preserve-3d;
	position: relative;
}
.front,
.back {
	backface-visibility: hidden;
	position: absolute;
	top: 0;
	left: 0;
}
.front {
	z-index: 2;
	/* for firefox 31 */
	transform: rotateY(0deg);
}
.back {
	transform: rotateY(180deg);
	z-index: 1;
}
.front {
	/* background: var(--main-bg-color-overlay) url("../img/content/dummy-overview.png") no-repeat center center / cover; */
    width: 100%;
    height: 100%;
    position: relative;
}

.front img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}


.front .inner {
	position: absolute;
	padding: 10px;
	bottom: 0;
}
.front .inner h3 {
	text-transform: uppercase;
    font-size: 30px;
	line-height: 1;
    font-weight: 800;
	display: inline;
	background: var(--color-white);
}
.front .inner h4 {
	text-transform: lowercase;
    font-size: 14px;
	line-height: 18px;
    font-weight: 500;
	letter-spacing: 0.5px;
	padding: 0;
	margin-top: 0;
	margin-bottom: 0;
}
.front .inner h4 span.wbg {
	display: inline;
	color: var(--color-white);
	background: var(--color-black);
}
.back {
	background: var(--color-white);
	padding: 20px;
	text-transform: none;
    font-size: 15px;
	line-height: 21px;
    font-weight: 350;
	letter-spacing: 0.5px;
    height:100%;
}
.back h3 {
	text-transform: uppercase;
	font-size: 18px;
	line-height: 1;
	font-weight: 800;

}

.back p {
    color: var(--color-black);
}




.overview .entry-item {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding-bottom: 20px;
    cursor: pointer;
}
.overview .entry-item .box-img {
    width: 200px;
    height: 200px;
    overflow: hidden;
    flex-shrink: 0;
}
.overview .entry-item .box-img img {
    max-width: 100%;
    width: auto;
    height: auto;
}
.overview .entry-item:hover .box-img img {
    max-width: 100%;
    width: auto;
    height: auto;
    transform: scale(1.05);
}
.overview .entry-item .item-content {
    padding: 20px;
    position: relative;
    flex-grow: 5;
    height: 200px;
}
.overview .entry-item:hover .item-content {
    background: #f6f6f6;
}
.overview .entry-item .item-content .inner-arrow {
    position: absolute;
    right: 10px;
    bottom: 10px;
}
.overview .entry-item:hover .item-content .inner-arrow {
    color: #E67932;
}
.tw-pagination {
    margin: 0 auto;
    text-align: center;
    padding: 20px 0;
}
.tw-pagination li {
    list-style: none;
    display: inline-block;
    padding-right: 6px;
}
.tw-pagination a,
.tw-pagination .current,
.tw-pagination .prev,
.tw-pagination .next {
    display: inline-block;
    margin-right: 4px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    line-height: 40px;
    text-align: center;
    text-decoration: none;
    background: #e7e7e7;
    border: 1px solid #d7d7d7;
    color: #666666;
}
.tw-pagination .prev,
.tw-pagination .next {
    color: #666666;
    background: #f7f7f7;
    border: 1px solid #e7e7e7;
}
.tw-pagination .current {
    color: #E67932;
    background: var(--color-white);
    border: 1px solid #E67932;
}
.tw-pagination a:hover {
    background: #d7d7d7;
    border: 1px solid #d7d7d7;
    color: #333;
}
.tw-pagination .prev:hover,
.tw-pagination .next:hover {
    color: #333;
    background: #e7e7e7;
    border: 1px solid #e7e7e7;
}

@media only screen and (max-width: 800px) {
    .contact.flex {
        display: block;
    }
}








/*
 * Buttons and forms
 * ======================================================== */

.button.button-primary,
button.button-primary,
input[type="submit"].button-primary,
input[type="reset"].button-primary,
input[type="button"].button-primary {
    background-color: var(--color-white);
    border-color: #f6ae72;
	height: 48px;
	padding: 0 30px;
	font-size: 14px;
	font-weight: 700;
	line-height: 42px;
	border-width: 3px;
	border-radius: 24px;
	font-family: 'Caros', sans-serif;
	text-transform: none;
	color: #eba164;
}

.button.button-primary:hover,
button.button-primary:hover,
input[type="submit"].button-primary:hover,
input[type="reset"].button-primary:hover,
input[type="button"].button-primary:hover,
.button.button-primary:focus,
button.button-primary:focus,
input[type="submit"].button-primary:focus,
input[type="reset"].button-primary:focus,
input[type="button"].button-primary:focus {
    color: var(--color-white);
    background-color: #f6ae72;
    border-color: #f6ae72;
}
.button.button-large,
button.button-large,
input[type="button"].button-large {
    height: 46px;
    padding: 0 36px;
    font-size: 13px;
    line-height: 46px;
    border-radius: 6px;
}

.button:hover {
    text-decoration: none;
}

#sb_instagram #sbi_load .sbi_load_btn, #sb_instagram .sbi_follow_btn a, .button.square {
    border-radius: 0px;
}

.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 50px;
    height: 50px;
    background: rgb(230, 121, 50, 0.5);
    border-radius: 50%;
    border: 4px solid rgb(230, 121, 50, 0.5);
    margin: -27px 0 0 -27px;
    transition: all 250ms ease-in-out;
    transform: scale(1) rotate(0deg);
}

a:hover .play-button {
    background: rgb(230, 121, 50, 1);
    border: 4px solid rgb(230, 121, 50, 1);
    transform: scale(1.2) rotate(120deg);
}

a:hover .play-button:hover {
    background: rgb(0, 0, 0, 1);
    border: 4px solid rgb(0, 0, 0, 1);
    transform: scale(1.2) rotate(120deg);
}

div.wpcf7-response-output {
    margin: 1em 0.5em 1em;
}

div.wpcf7-validation-errors, div.wpcf7-acceptance-missing {
    border: 2px solid #f7e700;
    background-color: #f7e700;
    color: var(--color-black);
    font-size: 13px;
}

div.wpcf7-mail-sent-ng, div.wpcf7-aborted {
    border: 2px solid #ff0000;
    background-color: #ff0000;
    color: var(--color-white);
    font-size: 13px;
}

div.wpcf7-mail-sent-ok {
    border: 2px solid #398f14;
    background-color: #398f14;
    color: var(--color-white);
    font-size: 13px;
}

span.wpcf7-not-valid-tip {
    color: var(--color-white);
    font-size: 0.8em;
    font-weight: normal;
    display: block;
    background: #f00;
    padding: 1px 4px;
    margin-bottom: 3px;
    position: relative;
}

span.wpcf7-not-valid-tip:before {
    position: absolute;
    display: block;
    width: 0;
    height: 0;
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    border-top: 5px solid #f00;
    content: "";
    bottom: -5px;
    left: 10px;
}

/*
 * Grid (isotope)
 * ======================================================== */
 
.grid-sizer,
.grid-item {
    width: 32%;
    /* padding: 8px; */
    margin-bottom: 10px;
    
}

@media (max-width: 750px) {
    .grid-sizer,
    .grid-item {
        width: 48%;
    }
}

/* Larger than phablet (also point when grid becomes active) */

@media (max-width: 550px) {
    .grid-sizer,
    .grid-item {
        width: 100%;
    }
}









.inspiration-item .inner {
    position: relative;
    background: #f3f3f3;
    padding: 10px 10px 20px 10px;
}

.inspiration-item:hover a {
    color: var(--color-black);
    text-decoration: none;
}

.inspiration-item:hover .inner {
    background: #eee;
}

.inspiration-item.article_own .inner {
    background: #E67932;
}

.inspiration-item.article_own:hover .inner {
    background: #DA732F
}

.inspiration-item .expl-link {
    display: block;
    position: relative;
    background: #f3f3f3;
    padding: 4px 10px 4px 10px;
    color: #E67932;
    border-top: 1px solid #E67932;
}

.inspiration-item:hover .expl-link {
    background: #eee;
    transition: all 250ms ease-in-out;
}

.inspiration-item .expl-link:hover {
    background: #ddd;
    color: #E67932;
}

.inspiration-item h2, .inspiration-item h3 {
    font-size: 21px;
    font-weight: 600;
    position: relative;
    font-family: 'Lato', sans-serif;
}

.inspiration-item.article_own h2, .inspiration-item.article_own h3 {
    color: var(--color-white);
}

.inspiration-item h2.title-ontop, .inspiration-item h3.title-ontop {
    position: absolute;
    left: 0;
    bottom: 0;
    padding: 0 0 10px 10px;
    margin-bottom: 0;
    color: var(--color-white);
    text-shadow: 0 0 8px rgba(0, 0, 0, 0.15);
}

.inspiration-item h2:after, .inspiration-item h3:after {
    position: absolute;
    content: "";
    width: 50%;
    height: 1px;
    background: #E67932;
    left: -10px;
    bottom: -8px;
}

.inspiration-item.article_own h2:after, .inspiration-item.article_own h3:after {
    background: rgba(255, 255, 255, 0.5);
}

.inspiration-item h2.title-ontop:after, .inspiration-item h3.title-ontop:after {
    display: none;
}

.inspiration-item .img-box {
    width: 100%;
    min-height: 160px;
    height: auto;
    overflow: hidden;
    position: relative;
}

/*.inspiration-item .img-box.img-box-square {
	height: 300px;
}
*/

.inspiration-item .img-box img {
    width: 100%;
    height: 160px;
    display: block;
    object-fit: cover;
    transition: all 250ms ease-in-out;
}

.inspiration-item .img-box.img-box-square img {
    height: auto;
}

.inspiration-item:hover .img-box img {
    transform: scale(1.05);
}

.inspiration-item .cat {
    position: absolute;
    bottom: 0;
    right: 0;
}

.inspiration-item .cat-name {
    display: inline-block;
    background: var(--color-black);
    color: var(--color-white);
    padding: 2px 8px;
}

.inspiration-item .quote-small {
    position: relative;
    padding: 15px 15px 40px 15px;
    font-size: 18px;
    font-weight: 200;
}

.inspiration-item .quote-small .author {
    position: absolute;
    bottom: 15px;
    right: 15px;
    font-size: 14px;
    font-weight: 300;
    font-style: italic;
    letter-spacing: 0.2px;
    color: #999;
}

.inspiration-item .quote-small:before {
    position: absolute;
    top: -1px;
    left: -8px;
    font-size: 41px;
    font-weight: bold;
    content: "“";
    font-family: Georgia, Times, serif;
    color: #ddd;
}

.quote-big {
    position: relative;
    padding: 15px 15px 45px 15px;
    font-size: 21px;
    font-weight: 200;
    max-width: 400px;
}

.quote-big .author {
    position: absolute;
    bottom: 15px;
    right: 15px;
    font-size: 17px;
    font-weight: 300;
    font-style: italic;
    letter-spacing: 0.2px;
    color: #999;
}

.quote-big:before {
    position: absolute;
    top: -1px;
    left: -8px;
    font-size: 41px;
    font-weight: bold;
    content: "“";
    font-family: Georgia, Times, serif;
    color: #ddd;
}

/*
 * Swipers
 * ======================================================== */

 /* Swiper button color = f78838 */

.swiper-button-next, .swiper-container-rtl .swiper-button-prev {
    background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M27%2C22L27%2C22L5%2C44l-2.1-2.1L22.8%2C22L2.9%2C2.1L5%2C0L27%2C22L27%2C22z'%20fill%3D'%23f78838'%2F%3E%3C%2Fsvg%3E");
    right: 10px;
}

.swiper-button-prev, .swiper-container-rtl .swiper-button-next {
    background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M0%2C22L22%2C0l2.1%2C2.1L4.2%2C22l19.9%2C19.9L22%2C44L0%2C22L0%2C22L0%2C22z'%20fill%3D'%23f78838'%2F%3E%3C%2Fsvg%3E");
    left: 10px;
}

.swiper-pagination-bullet-active {
    opacity: 1;
    background: #f78838;
}

.swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
    background: #f78838;
}


/*
 * Page FAQ codesurf.eu
 * ======================================================== */


.faq-item:first-of-type {
    margin-top: 80px;
}

.opener{
    display: flex;
}
.question {
    max-width: 90%;
    text-shadow: 1px 1px 2px #fff;
    font-weight: 400;
}
.collapse-content {
    display:none;
}
.accordion, .accordion li {
    list-style: none;
    padding-left: 0;
    position: relative;
    z-index: 200;
}

.accordion.market-faqs h3,
.accordion h2 {
    cursor: pointer;
    font-size: 1.8rem;
    border-bottom: 1px solid #ddd;
    padding-bottom: 10px;
    position: relative;
}

.accordion.market-faqs h3 .icon,
.accordion h2 .icon {
    position: absolute;
    right: 20px;
    top: 5px;
    color: rgba(0, 0, 0, 0.3);
    color: var(--color-tertiary);

}

.accordion.market-faqs h3:hover .icon,
.accordion h2:hover .icon {
    color: var(--color-accent);
}

.accordion .collapse {
    background: #f6f6f6;
    background: var(--color-secondary);
    color: var(--color-white);
    /* background: var(--color-white); */
    padding: 20px;
}

.accordion .collapse p:last-child {
    margin-bottom: 0;
}



/* Frequently Asked Questions Shortcode
   ---------------- ------------------------ */

section.section__faq-accordion {
    padding-top:50px;
    background-color: transparent;
    /* font-size:1.6rem; */

}
section.section__faq-accordion .accordion, .accordion li {
    
    list-style: none;
    padding-left: 0;
    position: relative;
    z-index: 10;
}

.accordion.market-faqs .faq-item:first-of-type {
    margin-top: 40px;
}

.accordion.market-faqs li ul li{
    list-style: circle inside;
}

.accordion.market-faqs li a {
    color: var(--color-white);
}

section.section__faq-accordion .accordion h4 {
    cursor: pointer;
    font-size: 1.6rem;
    border-bottom: 1px solid #ddd;
    padding-bottom: 10px;
    position: relative;
}

section.section__faq-accordion .accordion h4 .icon {
    position: absolute;
    right: 20px;
    top: 5px;
    color: rgba(0, 0, 0, 0.3);
    color: var(--color-codesurf-blue-transparent);
    /* color: var(--color-tertiary); */

}

section.section__faq-accordion .accordion h4:hover .icon {
    /* color: rgba(0, 0, 0, 1); */
    color: var(--color-codesurf-blue);
}

section.section__faq-accordion .accordion .collapse {
    /* background: #f6f6f6; */
    background: var(--color-secondary);
    color: var(--color-white);
    /* background: var(--color-white); */
    padding: 20px;
    font-size: 1.4rem;
}

section.section__faq-accordion .accordion .collapse a {
    color: var(--color-white);
}

section.section__faq-accordion .accordion .collapse p:last-child {
    margin-bottom: 0;
}

.section__faq-accordion .faq-item:first-of-type {
  margin-top: 50px;
}


/* contact page
 *
 * ============================= */

.gmap {
    width: 100%;
    height: 400px;
    border: #ccc solid 1px;
    margin: 0;
}

/* fixes potential theme css conflict */

.gmap img {
    max-width: inherit !important;
}

/*
 * Contact footer
 * ======================================================== */

#contact {
    position: relative;
	padding: 100px 0;
    background: linear-gradient(var(--color-codesurf-blue) , var(--color-dark-blue));
    color: var(--color-black);
    z-index:100;
    /* margin-top:-30vh; */
    margin-top:-82vh;
    
}

/* @media only screen and (max-width: 1760px) {
    #contact {
        margin-top: -70vh;
    }
} */


/* @media only screen and (max-width: 1760px) {
    #contact {
        margin-top: -100vh;
    }
} */

@media only screen and (max-width: 1560px) {
    #contact {
        margin-top: -70vh;
    }
}


@media only screen and (max-width: 700px) {
    #contact {
        margin-top: -60vh;
    }
}


/*
.page-template-page-who-we-are #contact {
    background-color: var(--main-bg-color-darker);
	background-image: url("../img/bg-lines.png");
	background-position: center top;
	background-repeat: repeat-y;
	background-size: 50% auto;
}
*/

#contact .container {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    align-content: space-between;
    flex-wrap: wrap;
}
#contact .container > div {
	max-width: 46%;
    z-index: 100;
    position: relative;
}
@media only screen and (max-width: 800px) {
    #contact .container > div {
        width: 100%;
        padding-right: 0px;
    }
}

#contact h2,
#contact h3 {
	text-align: center;
	position: relative;
	font-size: 3.2rem;
	margin-bottom: 1rem;
    color: var(--color-white);
    position: relative;
    z-index: 150;
}
#contact h3 {
	font-size: 2.4rem;
	margin-bottom: 3rem;
}
#contact h2:before {
	content: "";
	position: relative;
	display: block;
	left: calc(50% - 30px);
	width: 60px;
	height: 60px;
    /* opacity: 0.25; */
	/* background: url(../img/message.svg) center center / 60px 60px; */
    background-color: var(--color-tertiary);
    -webkit-mask: url(../img/message.svg) center center / 60px 60px;
    mask: url(../img/message.svg) center center / 60px 60px;
    mask-size: cover;

}
#contact .wpcf7-form {
    margin-bottom: 0;
    z-index: 100;
    position: relative;
}
#contact .wpcf7-textarea {
    width: 100%;
    height: 200px;
    margin-bottom: 0;
    /* background: rgba(0,0,0,0.04); */
    border-radius: 0;
    border: none;
    /* border-left: 2px solid rgba(0,0,0,0.1); */
    border-left: 2px solid rgba(var(--color-tertiary-rgba), 0.2);
    padding: 14px;
    font-family: "Caros";
	font-size: 16px;
}
#contact .wpcf7-textarea:focus {
    background: rgba(255,255,255,1);
    /* border-left: 2px solid rgba(0,0,0,0.3); */
    border-left: 2px solid rgba(var(--color-tertiary-rgba), 0.4);
    
}
#contact p {
    font-family: "Caros";
	font-size: 16px;
	font-weight: 300;
    /* color: var(--color-codesurf-blue-lighter); */
    color: var(--color-black);
}

#contact .way-to-reach-me {
    color: var(--color-white);
}
#contact .left p:last-of-type {
	margin-bottom: 0;
}
#contact .wpcf7-text {
    /* background: rgba(0,0,0,0.04); */
    border-radius: 0;
    border: none;
    font-family: "Caros";
	font-size: 16px;
    /* border-bottom: 2px solid rgba(0,0,0,0.1); */
    border-bottom: 2px solid rgba(var(--color-tertiary-rgba), 0.2);
	display: inline-block;
	width: 220px;
	margin-bottom: 2px;
	padding: 2px 10px;
}
#contact .wpcf7-text:focus {
    background: rgba(255,255,255,1);
    /* border-bottom: 2px solid rgba(0,0,0,0.3); */
    border-bottom: 2px solid rgba(var(--color-tertiary-rgba), 0.4);
}
input.wpcf7-submit {
    height: 42px;
    padding: 0 40px;
    color: var(--color-white);
    font-size: 15px;
    font-weight: 600;
    line-height: 40px;
    letter-spacing: .1rem;
    text-transform: none;
    background-color: rgba(0,0,0,0.1);
    border-radius: 20px;
    /* border: 1px solid rgba(0,0,0,0); */
    border: 2px solid var(--color-tertiary);
}
input.wpcf7-submit:hover {
    color: var(--color-secondary-hover);
    background-color: var(--color-tertiary);
    border: 1px solid var(--color-tertiary);
}

#contact .direct-contact {
    padding: 20px 40px;
    background: var(--color-white);
    color: var(--color-secondary-text);
}

#contact .wpcf7 form.sent .wpcf7-response-output {
    border-color: var(--color-tertiary);
    color: var(--color-white);
    background-color: rgba(0,0,0,0.8);
    z-index: 10;
}



#contact .direct-contact a {
    /* color: var(--color-black); */
    color: var(--color-accent);
    text-decoration: none;
    font-weight: 400;
}

#contact .direct-contact a:hover {
	text-decoration: underline;
}

#contact .socials {
	list-style: none;
	padding-left: 0;
	display: flex;
	width: 100%;
	justify-content: flex-start;
	margin-bottom: 0;
}
#contact .socials li {
	display: inline-block;
	padding-right: 20px;
    transition: all .25s ease-in-out;

}

#contact .socials li:hover{
	transform: scale(1.05);
}




.adress-type {
    font-style: italic;
}

/* Warnings and such   */
.wpcf7 form.invalid .wpcf7-response-output, .wpcf7 form.unaccepted .wpcf7-response-output {
    border-color: var(--color-tertiary);
}

span.wpcf7-not-valid-tip {
    background-color: var(--color-tertiary);
    padding: 3px 4px;
}

span.wpcf7-not-valid-tip::before {
    border-top: 5px solid var(--color-tertiary);
}

/*
 * Footer
 * ======================================================== */


.prefooter {
	position: relative;
    color: #ccc;
    font-size: 12px;
}

section.footer {
	position: relative;
    padding:60px 60px 120px 60px;
    /* margin-top: -300px; */
    margin-top: -100px;
    background: var(--color-dark-blue);
    color: var(--color-white);
    font-size: 14px;
    font-weight: 300;
}

.footer-background-image-box {
    position: absolute;
    top: 0;
    left: 49%;
    height: 500px;
    width: 500px;
    z-index: 100;
}


@media only screen and (max-width:1000px) {
    .footer-background-image-box {
        top: 130px;
        left: 28%
    }

    #contact .direct-contact,
    #contact .wpcf7-text,
    #contact .wpcf7-textarea {
        background: rgba(255,255,255,0.8);
    }
}

@media only screen and (max-width:750px) {
    .footer-background-image-box {
        top: 0;
        left: 14%
    }

}

@media only screen and (max-width:600px) {
    .footer-background-image-box {
        top: 0;
        left: 5%
    }

}

@media only screen and (max-width:530px) {
    .footer-background-image-box {
        left: 17%;
        height: 400px;
        width: 400px;
    }

}
@media only screen and (max-width:530px) {
    .footer-background-image-box {
        left: 8%;
    }

}

@media only screen and (max-width:420px) {
    .footer-background-image-box {
        left: 20%;
        height: 300px;
        width: 300px;
        top: 34px;
    }

}


@media only screen and (max-width:390px) {
    .footer-background-image-box {
        left: 17%;
        top: 23px;
    }

}

@media only screen and (max-width:350px) {
    .footer-background-image-box {
        left: 1%;
        top: -11px;
    }

}



/*
.footer-background-image-box {
    position: absolute;
    top: 0;
    left: 750px;
    left: 49%;
    height: 500px;
    width: 500px;
    z-index: 100;
}



@media only screen and (max-width:935px) {
    .footer-background-image-box {
        top:50px;
        height: 400px;
        width: 400px;
    }
}


@media only screen and (max-width:750px) {
    .footer-background-image-box {
        top:-100px;
        left:40%;
    }
}

@media only screen and (max-width:650px) {
    .footer-background-image-box {
        top:-150px;
        left:30%;

    }
}

@media only screen and (max-width:550px) {
    .footer-background-image-box {
       left:10%;
    }
}

@media only screen and (max-width:450px) {
    .footer-background-image-box {
        height: 300px;
        width: 300px;
    }
}

@media only screen and (max-width:376px) {
    .footer-background-image-box {
        top:-160px;
        left:5%;
    }
}

*/

.footer-background-image-image {
    position:absolute;
    height: 100%;
    width:100%;
    object-fit: cover;
}

.footer .section.container .left,
.footer .section.container .right {
    width: 50%;
}

.footer a {
    color: var(--color-white);
}

.footer a:hover {
    /* color: var(--color-white); */
    font-weight: 500;
}

.grecaptcha-badge {
    visibility: collapse !important;
}

.addres-line-right,
.left-bottom {
    padding-top: 10px;

}

.left-bottom a {
    text-decoration: none;
    padding-left: 10px;
    font-size: 120%;
}

section#addresses {
    padding-top: 0;

}

.footer-addresses {
    width: 100%;

    /* padding-bottom: 20px; */
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    align-items: center;
}

.addres-line {
    padding-bottom: 20px;

    display: flex;
    flex-wrap: wrap;
    /* align-items: center; */
    text-align: center;
}

@media only screen and (max-width: 760px) {
    .footer-addresses {
        flex-direction: column;
        
    }
}


.left-bottom ul {
    list-style:none;
}
li#speed-stats {
    margin-bottom: 0;
    
}

/*
 * New Footer
 *-----------------------*/

/* Footer Wave */
.footer-wave {
    position: relative;
    width: 100%;
    height: 1400px;
    overflow: hidden;   
    z-index: 0;
    opacity: 1;
    /* margin-top: -165vh; */
    margin-top: -60vh;
}

@media only screen and (max-wißdth: 1260px) {
    .footer-wave {
        margin-top: -70vh;

    }
}

@media only screen and (max-width: 1060px) {
    .footer-wave {
        margin-top: -80vh;

    }
}

@media only screen and (max-width: 760px) {
    .footer-wave {
        margin-top: -90vh;

    }
}

.waveF {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  z-index: 1;
}

/* Footer content */


 .footer a {
    color: var(--color-tertiary);
}

 .footer-box {
     position:relative;
     /* margin-top: 90px; */
     margin-top: 150px;
     display: grid;
     grid-template-columns: repeat( 6 , 1fr );
     gap:30px;
     /* background-color: #0071bb; */
     z-index: 150;
 }

 .footer-box__column {
     display: flex;
     flex-direction: column;
     
     /* background-color: #398f14; */

 }


.footer-box__column.fb-logo {
    justify-content: space-between;
    grid-column: 1 / span 3;
} 
.footer-box__column.fb-logo img {
    width: 320px;
    height: auto;
    /* object-fit: cover; */
} 

/* .fb-logo__company-group a {
    color: var(--color-tertiary);
} */

ul.address {
    list-style: none;   
}

ul.address li {
    margin-bottom: 0;
}

.fb-cta {
    display: flex;
    flex-direction: column;
}


.fb-shizzle {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.fb-menu {
    justify-content: space-between;

}

.fb-menu__menu {
    display: flex;
    flex-direction: column;
}

ul.fb-menu__socials {
    list-style: none;
    display: flex;
    justify-content: space-between;
    margin-bottom: 0;
}

ul.fb-menu__socials li {
    margin-bottom: 0;
}

ul.fb-menu__socials li i {
    font-size: 32px;
}

@media only screen and (max-width:1060px) {
    ul.fb-menu__socials li i {
        font-size: 24px;
    }
}

@media only screen and (max-width:900px) {
    .footer-box {
        grid-template-columns: repeat( 3 , 1fr );
    }
    .footer-box__column.fb-logo {
        margin-top: 30px;
        justify-content: space-between;
        grid-column: 1 / -1;
    } 
    .footer-box__column.fb-logo img {
        width: 100%;
        padding-bottom: 20px;
    }

    .fb-logo__story {
        padding-bottom: 10px;
    }
}

@media only screen and (max-width:550px) {
    section.footer {
        padding: 60px 40px 120px 40px;
    }
    .footer-box {
        grid-template-columns: repeat( 2 , 1fr );
    }

    .fb-menu {
        justify-content: space-around;
        grid-column: 1 / -1;
        flex-direction: column-reverse;
        height: 90px;
    }

    ul.fb-menu__socials li i {
        font-size: 32px;
    }
}

@media only screen and (max-width:400px) {
    section.footer {
        padding: 60px 20px 120px 20px;
    }
}

.market-links {
    margin-top: 50px;

}

ul.market-links__list {
    list-style: none;
    width: 100%;
    display: inline-flex;
    flex-wrap: wrap;
    gap:12px;
    justify-content: space-between;
}

ul.market-links__list li a {
    color:var(--color-codesurf-blue);
    /* padding: 0 10px; */
    
}

/* 
 * Front Page About section
 *============================================================== */

section.section-about-us {
    position: relative;
    height: 1400px;
    /* padding-top: 200px; */
    padding:100px;
    margin-top:-100px;
    /* background-color: var(--main-bg-color); */
    background-color: #053864;
}

.local-market section.section-about-us {
   /* height: 1500px; */
}



/*
h2.about-us {
    position: absolute;
    top:340px;
    left: 25%;
    color: var(--color-codesurf-blue);
    z-index: 150;
}
*/
 .about-us__box {
    height: 100%;
    position: relative;
    display: flex;
    overflow: hidden;
    border-radius: 50%;
 }

.about-us__box--image,
.about-us__box--text {
    width: 50%;
}

    .local-market .about-us__box--image{
        width: 30%;
    }
    .local-market .about-us__box--text {
        width: 70%;
    }


.about-us__box--image {
    max-height: 100%;
    position: relative;
    overflow: hidden;
}

.about-us__box--image img {
    position: relative;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-us__box--text {
    /* padding: 50px 30px 50px 30px; */
    background-color: var(--color-white);
    padding: 200px 150px 60px 30px;
    display: flex;
    flex-direction: column;
    /* justify-content: space-between; */
}
.au__box-text--preheading {
    text-transform: uppercase;
    /* font-size: 15px; */
    color:var(--color-tertiary);
    letter-spacing: 2px;
    font-weight: 500;
    margin-bottom:1.5rem;
}

h3.au__box-text {
    color: var(--color-codesurf-blue);
}

.au__box-text--text p {
    font-size: 16px ;
    color: var(--color-black);
}

.au__box-text--text p a {
    color: var(--color-tertiary);
    font-weight: 400;
}

.button-about-us {
    position: relative;
    width: 145px;
    height: auto;
    background: var(--color-codesurf-blue);
    border: 1px solid var(--color-codesurf-blue);
    /* padding: 30px 80px 30px 50px; */
    text-align: center;
    line-height: auto;
    box-shadow: 0 0 10px 0 rgba(0,0,0,0.1);
    box-shadow: 0 0 15px 0 rgba(var(--color-codesurf-rgba), 0.3);
    color: var(--color-white);
    
    transition: all 250ms ease-in-out;
    z-index: 3;
    transform: scale(1);
}

.button-about-us:hover {
    box-shadow: 0 0 15px 0 rgba(var(--color-codesurf-rgba), 0.5);
    transform: scale(1.05);
    color: var(--color-white);
}

@media only screen and (max-width: 1300px) {
    .about-us__box--image{
        width: 30%;
    }
    .about-us__box--text {
        width: 70%;
    }
}


@media only screen and (max-width: 1200px) {
    .local-market section.section-about-us { 
        height: 1100px;
        padding: 80px 50px;
    }
    .local-market .about-us__box {
        display: block;
    }
    .local-market .about-us__box--image {
        width: 100%;
        height: 100%;
        position: absolute;
        top:0;
        left:0;
        z-index:5;
    }
    .local-market .about-us__box--text {
        width: 100%;
        height: 100%;
        position: absolute;
        top:0;
        left:0;
        z-index:10;
        background-color: rgba(255,255,255,0.7);
        align-items: center;
        /* padding: 50px 90px; */
        justify-content: center;

    }
    .local-market h3.au__box-text {
        text-align: center;
    }
} 

@media only screen and (max-width: 1200px) {
    .local-market section.section-about-us {
        height: 900px;
        padding: 0px 0px;
    }
    .local-market .about-us__box{
        border-radius:0;
    }
    .local-market .about-us__box--text {
       text-align: left;
       padding:100px;
    }

    .local-market .au__box-text--preheading, .h3.au__box-text {
        padding: 0 30px;
    }
  
    .local-market .au__box-text--text p {
        padding: 0 30px;
    }
    .local-market .au__box-text--text p:nth-of-type(2) {
        padding: 0 30px;
    }

    .local-market .au__box-text--preheading {
        text-align: center;
    }
}

@media only screen and (max-width: 980px) {
    section.section-about-us { 
        height: 1010px;
        padding: 80px 50px;
    }
    .about-us__box {
        display: block;
    }
    .about-us__box--image {
        width: 100%;
        height: 100%;
        position: absolute;
        top:0;
        left:0;
        z-index:5;
    }
    .about-us__box--text {
        width: 100%;
        height: 100%;
        position: absolute;
        top:0;
        left:0;
        z-index:10;
        background-color: rgba(255,255,255,0.7);
        align-items: center;
        padding: 50px 90px;
        justify-content: center;

    }
    .local-market .about-us__box--text {
       padding: 50px 90px;
    }
    h3.au__box-text {
        text-align: center;
    }
}

@media only screen and (max-width: 860px) {
    section.section-about-us {
        height: 1100px;
        padding: 80px 20px;
    }
    .about-us__box--text {
        padding: 50px 70px;
    }
}

@media only screen and (max-width: 700px) {
section.section-about-us {
    /* height: 1100px; */
        padding: 40px 10px;
    }

    .local-market section.section-about-us {
        height: 1100px;
        
    }

    .about-us__box--text {
        padding: 50px 0px;
        text-align: center;
    }

    .local-market .about-us__box--text {
        padding: 50px 0px;
        /* text-align: center; */
    }

    .au__box-text--preheading,
    .h3.au__box-text {
        padding: 0 50px;
    }
    
    .au__box-text--text p {
        padding: 0 50px;
    }
    .au__box-text--text p:nth-of-type(2) {
        padding: 0 30px;
    }
}

@media only screen and (max-width: 550px) {
    section.section-about-us {
        height: 900px;
        padding: 0px 0px;
    }

    .local-market section.section-about-us {
        height: 1300px;
        
    }
    .about-us__box{
        border-radius:0;
    }
    .about-us__box--text {
       text-align: left;
    }



    .au__box-text--preheading, .h3.au__box-text {
        padding: 0 30px;
    }
  
    .au__box-text--text p {
        padding: 0 30px;
    }
    .au__box-text--text p:nth-of-type(2) {
        padding: 0 30px;
    }

    .au__box-text--preheading {
        text-align: center;
    }
}

@media only screen and (max-width: 470px) {
    section.section-about-us {
        height: 1100px; 
       
    }

    .local-market section.section-about-us {
        height: 1350px;
        
    }
   
}

@media only screen and (max-width: 415px) {
    section.section-about-us {
        height: 1200px; 
       
    }

    .local-market section.section-about-us {
        height: 1500px;
        
    }
}

@media only screen and (max-width: 370px) {
    section.section-about-us {
        height: 1300px; 
       
    }

    .local-market section.section-about-us {
        height: 1600px;
        
    }
}

@media only screen and (max-width: 335px) {
    section.section-about-us {
        /* height: 1200px;  */
       
    }

    .local-market section.section-about-us {
        height: 1700px;
        
    }

    .au__box-text--preheading, .h3.au__box-text {
        padding: 0 15px;
    }
  
    .au__box-text--text p {
        padding: 0 15px;
    }
    .au__box-text--text p:nth-of-type(2) {
        padding: 0 15px;
    }
}

/*
 * Front page Blogs
 * =========================================*/

 section.section-blogs {
    position: relative;
    /* background-color: var(--main-bg-color); */
    background-color: transparent;
    z-index: 100;
 }

 .section-blogs .container.swiper {
     overflow: hidden;
 }
 
  .section-blogs .swiper-container-horizontal > .swiper-scrollbar {
     bottom: -30px;
 }
 .fp-blogs-box {
    position: relative;
    width: 100%;
    height: 100%;
    z-index: 1;
    display:flex;
 }


 h2.h2-blogs {
     color: var(--color-codesurf-blue);
 }

 .fp-blogs-box a {
     text-decoration: none;
     /* box-shadow: 0 0 50px #ddd; */
     box-shadow:  0 0 15px 0 rgba(var(--color-codesurf-rgba), 0.3);
     transition: all 250ms ease-in-out;
 }

 .fp-blogs-box a:hover {
    box-shadow: 0 0 15px 0 rgba(var(--color-codesurf-rgba), 0.5);
    transform: scale(1.02);
 }

 .fp-blox-box__blog {
     position: relative;
     display: flex;
     flex-direction: column;
     background-color: var(--color-white);
 }

 .fp-blox-box__blog--image-box {
     position: relative;
     height: 250px;
     width: 100%;

 }

 .fp-blox-box__blog--image-box img {
     height: 100%;
     width: 100%;
     object-fit: cover;

 }

 h3.fp-blox-box__blog--title {
    color: var(--color-codesurf-blue);
    font-size: 22px;
    font-weight: 400;
    /* padding-top: 20px; */
    padding: 20px 20px 0 20px;
    margin-bottom:1.2rem;
 }

 .fp-blox-box__blog--excerpt {
     font-size: 16px;
     padding:0 20px 20px 20px;
 }


/*
 * Page Who We Are
 * ======================================================== */

#who-we-are {
     color: var(--color-white);
     z-index:5;
 }
#who-we-are h1,
#who-we-are h2, 
#who-we-are h3 {
    color: var(--color-white);
}
 .content-who-we-are {
     padding-bottom: 40px;
 }

.entry-content.content-who-we-are a {
    color: var(--color-tertiary);
 }

 .entry-content.content-who-we-are a:hover {
     color: var(--color-tertiary);
     font-weight: 500;
 }

 .entry-content.content-who-we-are p {
     color: var(--color-white);
 }


/*
 * Section what
 * ======================================================== */

 section.what {
    margin-top: -130px;
    background: linear-gradient(var(--color-codesurf-blue) , transparent), url(../img/shark-sea-fishing.jpg) center;
    /* background: linear-gradient(var(--color-white) , transparent), url(../img/shark-sea-fishing.jpg) center; */
 }

 section.what.market-what {
     margin-top: -70px;
 }

 h2.h2_what,
 .h4_what,
 p {
     color: var(--color-white);
 }

.whats-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    grid-gap: 40px;
    max-width: 980px; /*container width */
	padding: 40px 0;
}

.what-step {
    width: auto;
    height: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px;
    text-align: center;
    font-size: 90%;
}



/*
 * Media Queries
 * ======================================================== */

@media only screen and (max-width: 1220px) {
    .front .inner h3 {
        font-size: 28px;
    }
}

@media only screen and (max-width: 1140px) {
    .front .inner h3 {
        font-size: 26px;
    }
}

@media only screen and (max-width: 1050px) {

    .whats-steps {
        grid-template-columns: repeat(2, minmax(180px, 1fr));
    }

    .grid {
        display: grid;
        /* grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); */
        grid-template-columns: repeat(auto-fit, minmax(260px, 325px));
    }

    .front .inner h3 {
        font-size: 30px;
    }
}

@media only screen and (max-width: 900px) {

    .button-us .button-title, .button-wow .button-title {
        font-size: 28px;
    }

    .button-us .button-subtitle, .button-wow .button-subtitle {
        font-size: 28px;
    }

    h1.huge {
        font-size: 100px;
    }
    .huge-intro-text,
    .tagline,
    .h2_what {
        font-size: 36px;
    }

    .what-step {
        font-size: 80%;
    }

}

@media only screen and (max-width: 800px) {

    h1.huge {
        font-size: 85px;
    }
}


@media only screen and (max-width: 750px) {

    .button-us .button-title, .button-wow .button-title {
        font-size: 22px;
    }

    .button-us .button-subtitle, .button-wow .button-subtitle {
        font-size: 22px;
    }

    .button.button-us, .button.button-wow {
        padding: 20px 70px 20px 40px;
    }

    .huge-intro-text,
    .tagline,
    .h2_what  {
        font-size: 30px;
    }

}



@media only screen and (max-width: 750px) {


    .h2_what {
        text-align: center;
        font-weight: 400;
    }

    .whats-steps {
        grid-template-columns: 1fr;
        grid-gap: 20px;

    }

    .what-step {
        border-top: 1px solid rgba(var(--color-tertiary-rgba), 0.2);
        justify-content: center;
    }

    .what-step p {
        max-width: 220px;
        font-size: 100%;

    }

    .what-step ion-icon {
        font-size: 100px;
        padding-bottom: 10px;
    }

    .h4_what {
        font-size: 4rem;
    }


    #contact .container {
        flex-direction: column;
    }

    #contact .container > div {
        max-width: 100%;
        z-index: 135;
        position: relative;
    }

    .button-us .button-title, .button-wow .button-title {
        font-size: 18px;
    }

    .button-us .button-subtitle, .button-wow .button-subtitle {
        font-size: 18px;
    }

    .button.button-us, .button.button-wow {
        padding: 16px 55px 16px 30px;
    }

    .button.button-wow {
        margin-top:  -80px;
    }
}

@media only screen and (max-width: 650px) {

    h1.huge {
        font-size: 75px;
    }
}

@media only screen and (max-width: 550px) {

    h1.huge {
        font-size: 65px;
    }
    .huge-intro-text,
    .tagline,
    .h2_what {
        font-size: 24px;
    }

    .button-us .button-title, .button-wow .button-title {
        font-size: 14px;
    }

    .button-us .button-subtitle, .button-wow .button-subtitle {
        font-size: 14px;
    }

    .button.button-us, .button.button-wow {
        padding: 14px 40px 14px 20px;
        line-height: 1.8;
    }
    .button.button-us::after {
        right: 5px;
    }

    .button.button-wow {
        margin-top:  -40px;
    }
}

@media only screen and (max-width: 500px) {
    .button-us .button-title, .button-wow .button-title {
        font-size: 12px;
    }

    .button-us .button-subtitle, .button-wow .button-subtitle {
        font-size: 12px;
    }

    .button.button-us, .button.button-wow {
        padding: 10px 32px 10px 12px;
        line-height: 1.8;
    }
    .button.button-us::after {
        right: 3px;
    }
}


@media only screen and (max-width: 500px) {
    .huge-intro-text,
    .tagline,
    .h2_what {
        font-size: 22px;
    }
}




@media only screen and (max-width: 360px) {
    .front .inner h3 {
        font-size: 26px;

    }

    h1.huge {
        font-size: 55px;
    }
}



/*
 * Posts archive and single post
 * ======================================================== */

 /* Wave */

 .archive-page-wave {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
    z-index: 0;
    opacity: 1;
    margin-top: -100vh;
}

.archive-page-wave.single-service {
    /* margin-bottom: -801px;
    margin-top:0; */
}
.archive-page-wave.single-service #wave {

    fill: var(--color-codesurf-blue-lighter);
    /* fill: var(--main-background-color); */
}



.archive-title {
    color: var(--color-codesurf-blue);
    margin-bottom: 4rem;
}

.container-single, 
.container-blog-archive, 
 .container-single-blog {
     /* background-color:var(--color-codesurf-blue); */
     /* color: var(--color-codesurf-blue); */
     /* color:blue; */
     padding-bottom: 80px;
     z-index:5;
 }

 .container-single h1, 
.container-blog-archive h1, 
 .container-single-blog h1 {
    color: var(--color-codesurf-blue);
 }

 #single-blog.entry-content {
    z-index: 5;
    position: relative;
 }

 .entry-content ul,
 .entry-content p,
 .single-service p,
 #single-blog p {
     color: var(--color-black);
 }



 .page-title-blog,
 .page-title-white {
     color: var(--color-white);
 

 }

 .container-single-blog .page-title-white {
     margin-top: 120px;
 }

 .container-single-blog .post-nav a {
    color: var(--color-white);
    font-size: 92%;
    transition: all 250ms ease-in-out;
 }

 .container-single-blog .post-nav a:hover {
     font-size: 95%;
 }

 /* .container-single-blog  */

 ul.post-list {
     list-style: none;
 }

.post-list li {
    padding: 15px;
    transition: all .25s ease-in-out;
    background-color: var(--color-white);
    box-shadow: 0 0 15px 0 rgba(var(--color-codesurf-rgba), 0.3);
    z-index: 10;
    position: relative;
    min-height: auto;
    
}

 .post-list li a {
     text-decoration: none;
     /* padding-left: 30px; */


     height: auto;
     display: inline-block;

 }

 .post-list li:hover {
     /* box-shadow: 0px 3px 3px rgba(0,0,0,0.35); */
     box-shadow: 0 0 15px 0 rgba(var(--color-codesurf-rgba), 0.5);
     /* transform: scale(1.02); */
     transform: translateY(-5px);

 }

.post-item-inner {
    display: flex;
    flex-direction: column;

    height: auto;
}

/* @media only screen and (max-width:650px) {
    .post-item-inner {
        flex-direction: column;
    }
} */

.post-item-inner-left {
    /* min-width:25%;
    max-width: 25%; */

    min-width:100%;
    max-width: 100%;
    background-color: orange;
    height: 250px;
}           

.post-item-image-box {
    display: flex;
    /* padding: 10px; */
    align-items: center;
    justify-content: center;
    width:100%;
    height:100%;
    overflow: hidden;
}

/* @media only screen and (max-width:650px) {
    .post-item-inner-left {
        min-width:100%;
        max-width: 100%;
        background-color: orange;
    }
} */
.post-item-image-box img {
    width:100%;
    height:100%;

    object-fit: cover;
    transform: scale(1);

    transition: all 250ms ease-in-out;
}

.post-item-image-box img:hover {
    width:100%;
    height:100%;

    object-fit: cover;
    transform: scale(1.1) rotate(4deg);
}

.post-item-inner-right {
    /* background-color: green; */
    padding: 15px 0;


    margin-bottom:2px;
    height: auto;


}
 

/* .date-author-block {
    display: flex;
    font-weight: 300;
    font-size: 12px;
    color:var(--color-secondary);
    flex-wrap: wrap;
    padding-bottom: 10px;


}

.date-author-block .author-name  a,
.date-author-block .cat-list  a {
    color:var(--color-secondary);
}

.date-author-block span {
    padding: 0px 10px;
    color: var(--color-black);
}

 .title-icon-block {
    display: flex;
    justify-content: space-between;
    align-items: start;
 } */

.title-icon-block {
    display: flex;


    height: auto;

}

  .title-icon-block h2 {
    font-size: 2.2rem;
    width: 100%;
    margin-bottom: 1rem;

    height: auto;

  }

  /* .title-icon-block h2:hover {
      text-decoration: underline;
         text-decoration-color: var(--color-secondary);
  } */

  .excerpt-block {
      font-weight: 300;
      font-size: 80%;

    height: auto;

  }

 /* .icon-read-blog {
     color: var(--color-secondary);
     font-size: 40px;
     padding-left: 10px;

    height: auto;
 }

 @media only screen and (max-width:800px) {
    .icon-read-blog {
        display: none;
    }
    .title-icon-block h2 {
        font-size: 2.2rem;
        width: 100%;
        margin-bottom: 1rem;
    }

} */


.icon-step {
	width: 50px !important;
	height: auto !important;
}
.icon-small {
	width: 40px !important;
	height: auto !important;
}
.icon-fill {
	fill: var(--color-secondary) !important;
	fill: var(--color-white) !important;
}
.icon-stroke {
	stroke: var(--color-white) !important;
}
.bg-video {
	width: 100vw;
	height: 100vh;
	position: fixed;
	top: 0;
	left: 0;
}
#bgvid {
	object-fit: cover;
	width: 100vw;
	height: 100vh;
	position: fixed;
	top: 0;
	left: 0;
	filter: grayscale(70%);
}
.bg-video:after {
	content: " ";
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	background-color: var(--color-codesurf-blue-transparent);
	background-color: var(--main-bg-color-overlay-dark);
}

/*
 * Services Page
 * ======================================================== */

.single-service .entry-content {
    position: relative;
    z-index: 50;
} 
section.our-services {
    background-color: var(--main-bg-color-darker);
}
.service-item {
    padding-bottom: 50px;
}

.service-item__title-block {
    display: flex;

}

.service-item::after {
    display: block;
    content: "";
    width: 100%;
    height: 5vh;
    background-color: var(--color-codesurf-blue);
    clip-path: polygon(38% 0%, 62% 0%, 50% 97%);
    transition: all .25s ease-in-out;
}

.service-item:hover::after {

    /* clip-path: polygon(22% 0%, 78% 0%, 50% 100%); */
    clip-path: polygon(35% 0%, 65% 0%, 50% 100%);
    cursor:pointer;
}

.service-item__title-block--svg {
    padding-right: 30px;

}

.service-item__image {
    height: 100px;
    width: 150px;

}
 .service-item__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.service-item__fold-out-block {
    display: none;
    padding-left: 10px;
    border-left: 2px solid var(--color-tertiary);
    background: rgba(255,255,255,1);
}

/****************/
/* Sets the gallery to display: non , jQuery sets it to display:grid when it comes into the viewport */
.grid {
    display: none;
}


/*
 * Single Market Posts
 * ======================================================== */

section.market-specific-story {
    position: relative;
    z-index: 10;
    /* padding-top: 0;
    margin-top: -100px; */

}


.local-market section.section-about-us {

}


.local-market section#portfolio.portfolio {
    padding-bottom: 200px;
}
.market-specific-story {
    color: var(--color-white);
    font-size:18px;
    font-weight: 300;

}

@media only screen and (max-width:800px) {
  
    .market-specific-story {
        margin-bottom: 60px;
    }
}

.market-specific-story img {
    padding: 8px;
    background: var(--color-white);
}

.market-specific-story a {
   color: var(--color-white); 
}   

.market-specific-story a:hover {
   font-weight: 500;
}

.offered-services-label,
.serviced-area-label {
    padding-top: 20px;
    font-size: 2rem;
    font-weight: 500;
}

ul.offered-services-list li {
    padding-left: 15px;
    margin-bottom: 0rem;
}

.offered-services {
    padding-top: 20px;

}


ul.serviced-area-content {
    display: flex;
    list-style: none;
    flex-wrap: wrap;
    padding-left: 15px;

}

ul.serviced-area-content li {
    padding-right: 7px;
    margin-bottom: 0;

}

ul.serviced-area-content li:not(:last-of-type):after {
    content: ",";

}

.container.classyschema-faqpage.market-faqs {
    margin-top:80px;
}




/*
 * Search
 * ======================================================== */

section.template-404 {
    position: relative;
    background-color: var(--color-white);
    padding: 20px;
    z-index: 10;
    /* min-height: 350px; */
    margin-bottom:100px;
}

.page-title.title-404 {
    color: var(--color-primary);
}

.oops-spacer {
    min-height:200px;
}
/*
 * Search
 * ======================================================== */

.h1_search {
    color: var(--color-codesurf-blue);
    margin-bottom: 4rem;
    margin-top: 100px;
    padding: 0 20px;
}

.center-search-container .button {
    color: var(--color-black);
    border-color: var(--color-primary);
}


section.no-results.not-found {
    background-color: transparent;
    color: var(--color-primary);
    padding-top: 0px;
    
}


section.no-results.not-found h3 {
    display: none;
}

section.no-results.not-found .container {
    
    position: relative;
    background-color: var(--color-white);
    /* padding: 20px; */
    z-index: 10;
}

section.no-results.not-found .container .page-content {
    /* padding: 20px; */
    min-height: 200px;
}

section.no-results.not-found .container .page-content p {
    color: var(--color-black);
}



.search-box, #frm-center-search {
    text-align: left;
}

.no-results-spacer {
    min-height:100px;
}

#global-search-center {
    border-color: var(--color-primary);
}

.search-page-wave {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
    z-index: 0;
    opacity: 1;
    margin-top: -60vh;
}


 /*
 * Section market info
 * ======================================================== */

section.market-info {
    height: auto;
    /* background: linear-gradient(var(--color-codesurf-blue), var(--main-background-color)); */
    background: var(--color-white);

    background-color: transparent;
    position: relative;
    z-index: 100;   
    padding-top:60px;
}


.single-market-address {
    padding-bottom: 30px
}
.market-address-name {
    font-weight: 400;
    /* color: var(--color-codesurf-blue); */
}

.market-address-description {
    font-size: 90%;
    padding-left: 20px;
}

.market-contact-details {
    color: var(--color-codesurf-blue);
    display: flex;
    justify-content: flex-start;
    padding-top: 10px;
    padding-left: 20px;
    font-size: 90%;
}

a.market-address-email-address,
a.market-address-phone-number,
a.market-address-website {
    color:var(--color-codesurf-blue);
    padding-right: 30px;
    text-decoration: none;

    
}


a.market-address-email-address:hover,
a.market-address-phone-number:hover,
a.market-address-website:hover {
    text-decoration:underline;

}
h2.market-market-faqs,
h2.vehicle-chargers-map,
h2.useful-addresses,
h2.market-on-twitter {
    padding-top: 30px;
    color: var(--color-codesurf-blue);
}

p.vehicle-chargers-map-p {
    color:var(--color-black);
}

h2.market-on-twitter {
    margin-top: 30px;
}

@media only screen and (max-width:500px) {
    h2.vehicle-chargers-map,
    h2.useful-addresses,
    h2.market-on-twitter {
        font-size: 2.8rem;

    }

}

.ctf-tweet-text a,
.ctf-tweet-actions a,
.ctf-verified a {
    text-decoration-color: var(--color-codesurf-blue);
}

.ctf-tweets {
    display: flex;
    width: 100%;
    flex-wrap: wrap;
    /* padding-top: 20px; */
}

#ctf .ctf-item:first-child,
#ctf .ctf-item {
    width:50%;
    max-width: 50%;
    border-top: 0px solid var(--color-codesurf-blue-transparent);
    padding-right: 25px;
}

.ctf-tweet-text {
    color: var(--color-black);
}

@media only screen and (max-width:675px) {
    #ctf .ctf-item:first-child,
    #ctf .ctf-item {
        width:100%;
        max-width: 100%;
        padding-right: 5px;
        
    }

    #ctf .ctf-item  {
        border-top: 1px solid var(--color-codesurf-blue-transparent);
    }
}


.ctf-header {
    display: none;
}

a.ctf-author-name {
    color: var(--color-codesurf-blue);
}

.ctf-tweet-content {
    font-size: 80%;
}

#ctf svg:not(:root).svg-inline--fa {
    color: var(--color-tertiary);
}


#ctf #ctf-more {
    background: var(--color-codesurf-blue-lighter);
}

#ctf #ctf-more:hover {
    background: var(--color-codesurf-blue);
    color: var(--color-white);
}


/* Vehicle Charging Map */

.local-vehicle-chargers-map {
    display: flex;
    justify-content: center;
}

.local-vehicle-chargers-map iframe {
    width: 100%;
}











/******************************************/

/* Membership popup                       */

/******************************************/


 /* Subscribe form */


            .cta-popup-box__outer {
                display: none;
            }

            .cta-popup-box {
                
                position: -webkit-sticky; 
                position: fixed;
                top: 0;
                height: 100vh;
                width: 100vw;
                background-color: rgba(0, 0, 0, 0.7);
                display: flex;
                justify-content: center;
                align-items: center;
                z-index: 500;
            }

            .cta-popup-box__cta-popup {
                position: relative;
                display: block;
                width: 45%;
                height: 50%;
                z-index: 1500;
                border: 2px solid var(--color-codesurf-blue-lighter);
            }

            @media only screen and (max-width: 1000px) {
                .cta-popup-box__cta-popup {
                    width: 70%;
                }
            }

            @media only screen and (max-width: 650px) {
                .cta-popup-box__cta-popup {
                    width: 90%;
                }
            }

            @media only screen and (max-width: 500px) {
                .cta-popup-box__cta-popup {
                    height: 75vh;
                }
            }


            .cta-popup-box__cta-popup--image-box {
                position: relative;
                height: 100%;
                width: 100%;
            }

            .cta-popup-box__cta-popup--image-box img {
                position: absolute;
                width: 100%;
                height: 100%;
                top: 0;
                left: 0;
                object-fit: cover;
            }

            .cta-popup-box__cta-popup--content {

                position: absolute;
                width: 100%;
                height: 100%;
                z-index: 2000 ;
                padding: 50px;
                background-color: rgba(0,0,0, 0.5);
                color: var(--color-font-light);
                display: flex;
                flex-direction: column;
                justify-content: center;
                align-items: center;

            }

            @media only screen and (max-width: 700px) {
                .cta-popup-box__cta-popup--content {
                   padding: 30px;
                }
            }

            @media only screen and (max-width: 450px) {
                .cta-popup-box__cta-popup--content {
                   padding: 20px;
                }
            }

            .cta-popup-box__cta-popup--content .cta-popup-close {
                color: var(--color-white);
                position: absolute;
                top: 20px;
                right: 20px;
                height: 40px;
                width: 40px;
                display: flex;
                justify-content: center;
                align-items: center;
                font-size: 24px;
                cursor: pointer;
            }

            @media only screen and (max-width: 700px) {
               .cta-popup-box__cta-popup--content .cta-popup-close {
                    top: 12px;
                    right: 12px;
                }
            }

             .cta-popup-box__cta-popup--content .wpcf7-form{
                display: flex;
                justify-content: space-between;

                flex-wrap: wrap;
                margin-bottom: 0;
            }

            .cta-popup-box__cta-popup--content h2,
            .cta-popup-box__cta-popup--content p {
                text-align: center;
                color:var(--color-white);
            }

            .cta-popup-box__cta-popup--content h2 {
                font-size: 3.5rem;
            }

            .cta-popup-box__cta-popup--content p {
                font-size: 2.5rem;
                margin-bottom: 0;
            }

            @media only screen and (max-width: 450px) {
                .cta-popup-box__cta-popup--content h2 {
                    padding-top: 22px;
                }

            }

            .cta-popup-box__cta-popup--content .cta-fields {
                width: 100%;
                display: flex;
                flex-wrap: wrap;
                justify-content: space-between;
            }

            @media only screen and (max-width: 500px) {
                .cta-popup-box__cta-popup--content .cta-fields {
                   flex-direction: column;
                }
            }


            .cta-popup-box__cta-popup--content div .cta-field {
                width: 45%;
            }

            @media only screen and (max-width: 500px) {
                .cta-popup-box__cta-popup--content div .cta-field {
                    width: 100%;
                }

            }
            .cta-popup-box__cta-popup--content div .cta-field input {
                width: 100%;
            }

            @media only screen and (max-width: 500px) {
                .cta-popup-box__cta-popup--content div .cta-field input {
                    margin-bottom: 0.7rem;
                }

            }
            .cta-popup-box__cta-popup--content .frm-name {
                padding-right: 20px;
            }

           
            .cta-popup-box__cta-popup--content .wpcf7-text {
                background: rgba(255,255,255,0.7);
                border-radius: 0;
                border: none;
                border-bottom: 4px solid rgba(var(--color-tertiary-rgba), 0.8);
              }

            .cta-popup-box__cta-popup--content p:last-of-type {
                padding-top: 10px;
                display: flex;
                width: 100%;
                justify-content: flex-start;
                flex-direction: row-reverse;
            }

            .cta-popup-box__cta-popup--content p:last-of-type input{
                margin-bottom: 0;
            }

            .cta-popup-box__cta-popup--content .wpcf7-submit {
                background-color: var(--main-bg-color-overlay-dark);
                color: var(--color-white);
            }

            @media only screen and (max-width: 500px) {
                .cta-popup-box__cta-popup--content .wpcf7-submit {
                    margin-top: 17px;
                }
            }

            .cta-popup-box__cta-popup--content .wpcf7-response-output {
                border-color: var(--color-tertiary);
                color: var(--color-white);
                background-color: rgba(0,0,0,0.8);
                z-index: 10;
                text-decoration: none;
            }

            a.cta-popup-box__close-popup {
                position: absolute;
                bottom: 40px;
                left: 50px;
                font-size: 14px;
                color:var(--color-white);
                text-decoration-color: var(--color-tertiary);
                position: absolute;

            }

            @media only screen and (max-width: 700px) {
                a.cta-popup-box__close-popup {

                    bottom: 20px;
                    left: 30px;
                   

                }
            }

            @media only screen and (max-width: 500px) {
                a.cta-popup-box__close-popup {

                    bottom: 55px;
                    left: 30px;
                    display: flex;
                    max-width: 45%;

                }
            }

        


/*
 * Background fishes animation
 * ======================================================== */

 /* https://codepen.io/monchito/pen/RPEqvo */



.fishes-swimming-area {
    /* display: block; */
    width:100%;
    /* height: 500px; */
    position: relative;
    bottom: 800px;
    z-index: 100;
}
 
 /* body {
  background: #6ca3a3;
} */

svg#fish {
  top: 5em;
}
/* Fish Animation */
svg.fish{
  overflow:visible;
}

@-webkit-keyframes swim
{
	0% {margin-left: -235px}
	90% {margin-left: 100%;}
	100% {margin-left: 100%;}
}

@keyframes swim
{
	0% {margin-left: -235px}
	70% {margin-left: 100%;}
	100% {margin-left: 100%;}
}

.fish{
	width: 235px;
	height: 104px;
	margin-left: -235px;
	position: absolute;	
	animation: swim 20s;
	-webkit-animation: swim 20s;
	animation-iteration-count: infinite;
	-webkit-animation-iteration-count: infinite;
	animation-timing-function: linear;
	-webkit-animation-timing-function: linear;
}

svg #fish1,
svg #fish2,
svg #fish3,
svg #fish4,
svg #fish5,
svg #fish6 {
/* fill:#528484; */
fill:var(--color-fishes);
  
    -moz-animation: bounce 2s infinite;
  -webkit-animation: bounce 2s infinite;
  animation: bounce 2s infinite;
}

svg #fish2{
	animation-delay: 0.5s;
	-webkit-animation-delay: 0.5s;
}

svg #fish3{
	animation-delay: 0.2s;
	-webkit-animation-delay: 0.2s;
}

svg #fish4{
	animation-delay: 0.4s;
	-webkit-animation-delay: 0.4s;
}

svg #fish5{
	animation-delay: 0.1s;
	-webkit-animation-delay: 0.1s;
}

svg #fish6{
	animation-delay: 0.3s;
	-webkit-animation-delay: 0.3s;
}

/**/
@-moz-keyframes bounce {
  0%, 50%, 100% {
    -moz-transform: translateY(0);
    transform: translateY(0);
  }
  25% {
    -moz-transform: translateY(-5px);
    transform: translateY(-5px);
  }
  75% {
    -moz-transform: translateY(-3px);
    transform: translateY(-3px);
  }
}
@-webkit-keyframes bounce {
  0%, 50%, 100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
  25% {
    -webkit-transform: translateY(-5px);
    transform: translateY(-5px);
  }
  75% {
    -webkit-transform: translateY(-3px);
    transform: translateY(-3px);
  }
}
@keyframes bounce {
  0%, 50%, 100% {
    -moz-transform: translateY(0);
    -ms-transform: translateY(0);
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
  25% {
    -moz-transform: translateY(-5px);
    -ms-transform: translateY(-5px);
    -webkit-transform: translateY(-5px);
    transform: translateY(-5px);
  }
  75% {
    -moz-transform: translateY(-3px);
    -ms-transform: translateY(-3px);
    -webkit-transform: translateY(-3px);
    transform: translateY(-3px);
  }
}

/*END Fish Animation*/




/*
 * Background rain animation
 * ======================================================== */
/* https://codepen.io/jh3y/pen/WyNdMG */

.rain-lots-of-it {
  background-color: #6c78a9;
  display: flex;
  align-items: center;
  justify-content: center;
}

.rain__drop {
  animation-delay: calc(var(--d) * 1s);
  animation-duration: calc(var(--a) * 1s);
  animation-iteration-count: infinite;
  animation-name: drop;
  animation-timing-function: linear;
  height: 30px;
  left: calc(var(--x) * 1%);
  position: absolute;
  top: calc((var(--y) + 50) * -1px);
}
.rain__drop path {
  fill: #a1c6cc;
  opacity: var(--o);
  transform: scaleY(calc(var(--s) * 1.5));
}
@-moz-keyframes drop {
  90% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    transform: translateY(100vh);
  }
}
@-webkit-keyframes drop {
  90% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    transform: translateY(100vh);
  }
}
@-o-keyframes drop {
  90% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    transform: translateY(100vh);
  }
}
@keyframes drop {
  90% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    transform: translateY(100vh);
  }
}

/*
 * Background drop animation
 * ======================================================== */
/* https://codepen.io/abehjat/pen/oXMENv */

.post-nav-service {
    /* margin-top: -100px; */
}

.background-drop-animation {
    margin-top: -30px;
    position: relative;
    overflow: hidden;
    width: 100%;
    height: 347px;
}

.background-drop-animation:before {
    display: block;
    content: "";
    width:100%;
    height:5px;
    /* background-color:yellow; */
}

div.drop,
div.wave {
  /* margin: 175px auto; */
  margin: 70px auto;
}


.drop {
  position: relative;
	width: 20px;
	height: 20px;
  top: -100px;
  margin: 0 auto;
    background: #FFF;
    background:var(--color-drop-animation);
	-moz-border-radius: 20px;
	-webkit-border-radius: 20px;
	border-radius: 20px;
  -moz-animation-name: drip;
  -webkit-animation-name: drip;
  animation-name: drip;
  -moz-animation-timing-function: cubic-bezier(1,0,.91,.19);
  -webkit-animation-timing-function: cubic-bezier(1,0,.91,.19);
  animation-timing-function: cubic-bezier(1,0,.91,.19);
  -moz-animation-duration: 2s;
  -webkit-animation-duration: 2s;
  animation-duration: 2s;
  -moz-animation-iteration-count: infinite;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
}

.drop:before {
  content: "";
  position: absolute;
  width: 0;
	height: 0;
	border-left: 10px solid transparent;
	border-right: 10px solid transparent;
	border-bottom: 30px solid var(--color-drop-animation);
  top: -22px;
}

.wave {
  position: relative;
  opacity: 0;
  top: 0;
	width: 2px;
	height: 1px;
  border: var(--color-drop-animation) 7px solid;
	-moz-border-radius: 300px / 150px;
	-webkit-border-radius: 300px / 150px;
	border-radius: 300px / 150px;
  -moz-animation-name: ripple;
  -webkit-animation-name: ripple;
  animation-name: ripple;
  -moz-animation-delay: 2s;
  -webkit-animation-delay: 2s;
  animation-delay: 2s;
  -moz-animation-duration: 2s;
  -webkit-animation-duration: 2s;
  animation-duration: 2s;
  -moz-animation-iteration-count: infinite;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
}

.wave:after {
  content: "";
  position: absolute;
  opacity: 0;
  top: -5px;
  left: -5px;
	width: 2px;
	height: 1px;
  border: var(--color-drop-animation) 5px solid;
	-moz-border-radius: 300px / 150px;
	-webkit-border-radius: 300px / 150px;
	border-radius: 300px / 150px;
  -moz-animation-name: ripple-2;
  -webkit-animation-name: ripple-2;
  animation-name: ripple-2;
  -moz-animation-duration: 2s;
  -webkit-animation-duration: 2s;
  animation-duration: 2s;
  -moz-animation-iteration-count: infinite;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
}

@keyframes ripple {
    from {
      opacity: 1;
    }
    to {
      width: 600px;
      height: 300px;
      border-width: 1px;
      top: -100px;
      opacity: 0;
    }
}

@keyframes ripple-2 {
    0% {
      opacity: 1;
    }
    50% {
      opacity: 0;
    }
  100% {
    width: 200px;
    height: 100px;
    border-width: 1px;
    top: 100px;
    left: 200px;
  }
}

@keyframes drip {
    to {
      top: 190px;
    }
}




.paginate-links {
    position: relative;
    z-index:1000;
    color: var(--color-white);
}

.paginate-links a {
    color: var(--color-white);
}