h1 {
	margin: 0px;
}

.flex-row {
	display: flex;
}

.text-center {
	text-align: center;
}

.primary-color {
    color: #0F1D3B;
}
.primary-background {
    color: #0F1D3B;
}

.color-gray {
	color: #ccc;
}
.color-white {
	color: #fff;
}
.color-black {
	color: #000;
}

/* header */
header#main-header {
    position: absolute;
    width: 100%;
    background: transparent;
    padding: 4px 0px;
    z-index: 0;
}

header#primary-header {
    background: transparent;
    opacity: 0;
    transition: 1s all;
    position: absolute;
    width: 60%;
    left: calc(50% - 30%);
    padding: 20px;
    z-index: 9;
    visibility: hidden; /* Set visibility to hidden initially */
}
body.main-fixed header#primary-header {  
    opacity: 1;
    visibility: visible; /* Set visibility to visible when main-fixed is applied */
    transition: 1s all;
}

header#main-header.front-page-header {
    position: absolute;
    width: 100vw;
    background: transparent;
    z-index: 999;
    padding: 10px 40px;
    transition: 1s all;
} 

.edwen-burger {
	position: relative;
	margin-top: 65px;
    margin-right: 20px;
}
.edwen-hamburger {
    display: block;
    background: transparent;
    position: relative;
    overflow: hidden;
    margin: 0;
    padding: 0;
    width: 40px;
    height: 40px;
    font-size: 0;
    text-indent: -9999px;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    box-shadow: none;
    border-radius: none;
    border: none;
    cursor: pointer;
    -webkit-transition: background .3s;
    transition: background .3s;
    outline:none !important;
}

.edwen-hamburger:hover {
	background: transparent;
}
.edwen-hamburger span {
    display: block;
    position: absolute;
    top: 18.5px;
    left: 8px;
    right: 8px;
    height: 3px;
    background: #DDD;
    -webkit-transition: all .2s cubic-bezier(.68,-.55,.265,1.55);
    transition: all .2s cubic-bezier(.68,-.55,.265,1.55);
}

.edwen-hamburger span.main {
	top: 12px;
	visibility: visible;
}
.edwen-hamburger span.mid {
	top: 20px;
}
.edwen-hamburger span.after {
	top: 28px;
}

.edwen-burger:hover .edwen-hamburger span.main {
	-webkit-transform: translateX(5px);
    transform: translateX(5px);
}
.edwen-burger:hover .edwen-hamburger span.after {
	-webkit-transform: translateX(5px);
    transform: translateX(5px);
}

  img.site-logo {
	    width: 90px;
    	padding: 10px;
	}

	.right-header {
		float: right;
	}
	.center-header {
		text-align: center;
	}

	header#main-header .main-nav, header#main-header .contact-email {
		float: left;
	}
	 	nav#main-navigation ul.menu {
			list-style: none;
			-webkit-transform: translateY(60px);
    		transform: translateY(60px);
    		transition: 1s all;
			display: inline-block;
		}
		body.main-fixed nav#main-navigation ul.menu {
			-webkit-transform: translateY(0px);
    		transform: translateY(0px);
		}
		 	nav#main-navigation ul.menu li {
				display: inline-block;
			} 	nav#main-navigation ul.menu li a {
					display: inline-block;
					padding: 42px 10px;
					color: #606060;
					font-weight: 500;
					font-size: 14px;
					text-transform: uppercase;
					letter-spacing: 1px;
				}

				.nav#main-navigation ul.menu li a:hover {
					color: #0F1D3B;
					transition: .5s all;
				}

				ul#contact-menu {
					margin-left: 20px;
					border-left: 1px solid #0F1D3B;
					padding-left: 20px;
				}

				.main-nav ul#contact-menu li.menu-item a {
					padding: 0px 10px;
					text-transform: capitalize;
					font-weight: 500;
					color: #0F1D3B;
					transition: 1s all;
				}

				.main-nav ul#contact-menu li.menu-item a:hover {
					letter-spacing: 2px;
					transition: 1s all;
				}

		header#main-header .contact-email {
		    border-left: 1px solid #3a3a3a;
		    margin: 21px 0px 21px 20px;
		    padding-left: 6px;
		}
			header#main-header .contact-email a {
				padding: 4px 10px;
	    		display: block;
	    		font-weight: 700;
	    		font-size: 13px;
			}
				header#main-header .contact-email a i {
					margin-right: 10px;
				}



/* banner */
section.s-banner, section.mobile-s-banner {
	background: #ffffff;
    height: calc( 100vh );
    position: relative;
}
	section .background-foreground {
	    background: url(../images/foreground.jpg);
	    background-size: 100vw;
	    background-repeat: no-repeat;
	    background-position: 0px 0px;
	    height: 100%;
	    position: absolute;
	    width: 74%;
	    z-index: 2;
	    border-right: 2px solid #d5d5d5;
		overflow: hidden;
  		animation: leftright 1.5s infinite;
	}
		section .info-banner {
			position: absolute;
			top: calc(50vh - 122px);
			left: 9vw;
			width: 380px;
		}

		section .info-banner-right {
			position: absolute;
			top: calc(50vh - 110px);
			left: 74vw;
			width: 278px;
			text-align: right;
			transition: 1s all ease;
		}

		/* section .info-banner-right:hover {
			transform: scale(1.2);
		} */

			section .background-foreground p.intro, section .background-banner p.intro {
				margin-top: 22px;
				font-size: 26px;
				line-height: 34px;
				font-style: italic;
			}
			section .background-foreground h1 {
			    color: #0F1D3B;
			}
			section .background-banner h1 {
			    color: #fff;
			}

			section .background-foreground p.intro {
			    color: #565656;
			}
			section .background-banner p.intro {
			    color: #959595;
			}

			section .background-foreground h1, section .background-banner h1 {
				font-size: 76px;
				margin: 0px;
				text-transform: uppercase;
				letter-spacing: 3px;
				line-height: 48px;
				font-weight: 800;
				margin-bottom: 40px;
				transition: all 1s;
			}

			section .background-foreground h1 {
				color: #3e3e3e;
			}

		 	section .background-banner h1 {
				color: #dbdbdb;
		 	}


		section:hover > .background-foreground {
  			animation: none;
		}

		section .background-foreground:hover :after {
  			display: block;
		}

		section .background-foreground:after {
		    content: "\f07e";
		    font-family: FontAwesome;
		    left: 100%;
		    position: absolute;
		    top: calc( 50vh - 15px );
		    z-index: 3;
		    background: #d5d5d5;
		    margin-left: -15px;
		    font-size: 18px;
		    width: 28px;
		    height: 28px;
		    border-radius: 20px;
		    padding: 2px;
		    text-align: center;
		    vertical-align: middle;
		    line-height: 22px;
		    border: 2px solid #d5d5d5;
		    color: #ffffff;
		    transition: all 0.1s;
		    box-shadow: 0 0 0 rgba(204,169,44, 0.8);
  			animation: pulse 2s infinite;
  			visibility: hidden;
		}

		section .background-foreground:hover::after {
  			visibility: visible;
		}
		section:hover .background-foreground:after {
		    transform: scale(1.1);
		}
	section .background-banner {
	    background: url(../images/background.jpg);
	    background-size: 100vw;
	    background-repeat: no-repeat;
	    background-position: 0px 0px;
	    height: 100%;
	    position: absolute;
	    width: 100%;
	    z-index: 1;
	}
		/*.background-banner img.site-logo {
			background: #000;
		}*/

		.background-banner nav#main-navigation ul.menu li a {
		    color: #000;
		}

		.background-banner header#main-header .contact-email {
		    border-left: 1px solid #000;
		}

.ui-resizable-e {
    width: 20px !important;
    z-index: 999;
    /*right: -12px !important;*/
}

.ui-resizable-handle {
    cursor: move !important;
}

/*.resizer {
	position: absolute;
    height: 100%;
}*/

.edwen-signature {
	margin-top: 20px;
	width: 100%;
}


/* ------------- ABOUT SECTION /HOME -------------*/

/*.s-about-me:before {
	content: "" !important;
    width: 0;
    height: 0;
    position: absolute;
    border-top: 100px solid transparent;
    border-bottom: 0px solid transparent;
    border-right: 100vw solid #ffffff;
    bottom: 100%;
    left: 0;
    z-index: 9;
}*/

img.edwen-logo-pulse {
	box-shadow: 0 0 0 rgba(204,169,44, 0.8);
    animation: pulse 2s infinite;
    border-radius: 50%;
}

a.edwen-readmore-invert {
    margin-left: 10px;
    color: #0F1D3B;
}

.s-about-me .edwen-logo-pulse {
	max-width: 100px;
}

.edwen-about-c-heading {
	font-size: 36px;
    font-weight: 600;
    line-height: 46px;
    margin: 0px;
    position: relative;
    margin-bottom: 50px;
    font-family: 'Edward';
}

.edwen-heading-100 {
	font-size: 100px;
	line-height: 140px;
}

/*.edwen-about-c-heading:after {
	content: "";
    position: absolute;
    top: 100%;
    width: 100%;
    max-width: 300px;
    height: 20px;
    background: #929292;
    right: 100%;
    margin-right: -70px;
    margin-top: 5px;
}*/

.s-work {
	background: #fcfcfc; 
	background: linear-gradient( to bottom,  rgba(232, 232, 232, 0) 10%,   rgba(232, 232, 232, 0.30) 30%,  rgba(232, 232, 232, 0.60) 50%,  rgba(232, 232, 232, 0.40) 80%, rgb(232, 232, 232));
}

.edwen-portolio-loop {
	position: relative;
}

.portolio-loop-stage {
    width: 100%;
    height: 500px;
    overflow: hidden;
    border-radius: 10px;
}

.portolio-loop-img {
    width: 100%;
    height: 100%;
    border-radius: 10px;
    background-size: cover;
    background-position: center;
	transition: all 2s ease;
    transform: scale(1);
	position: relative;
    width: 100%;
    height: 100%;
    background-size: cover;
}


.portolio-loop-title {
    width: 350px;
    position: absolute;
    z-index: 2;
    top: 106px;
    right: 20px;
    background: rgb(0 0 0 / 43%);
    padding: 24px;
    box-shadow: 2px 15px 15px rgba(0, 0, 0, 0.07);
    border-radius: 6px;
    transition: all .5s;
    backdrop-filter: saturate(180%) blur(28px);
    color: #fff;
}

.portolio-loop-title:hover {
	transform: scale(1.1);
    box-shadow: 8px 15px 20px rgb(0 0 0 / 7%);
}

.portfolio-container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 20px;
}

.portfolio-item {
    position: relative;
    overflow: hidden;
}

.portfolio-thumbnail {
    width: 100%;
    height: auto;
    display: block;
}

.portfolio-title {
    position: absolute;
    bottom: 0;
    left: 0;
    background-color: rgba(255, 255, 255, 0.8);
    width: 100%;
    padding: 10px;
    text-align: center;
}

.portfolio-container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(400px, 1fr)); /* Adjust minmax values */
    gap: 20px;
}

.edwen-portolio-loop {
    position: relative;
    overflow: visible;
    width: calc(100% - 20px); /* Adjust for gap */
}

.portolio-loop-stage {
    width: 100%;
    position: relative;
    background-color: #f0f0f0;
    height: 500px;
}


.edwen-portofolio-title {
    margin-top: 0px;
    margin-bottom: 0px;
}

.portolio-loop-title p {
	font-size: 13px;
    line-height: 20px;
}

h2.edwen-portofolio-title {
    font-family: 'Edward';
    text-transform: uppercase;
}

.s-work .s-tab nav {
	float: right;
    margin-top: -77px;
}

.edwen-work-thumbnail {
	position: relative;
}

.edwen-work-thumbnail img.edwen-works {
	-webkit-filter: grayscale(100%);
    filter: grayscale(100%);
    transition: 1s all;
    width: 100%;
}

.edwen-work-thumbnail.inview img.edwen-works {
	-webkit-filter: grayscale(0%);
    filter: grayscale(0%);
}

.edwen-work-thumbnail:after {
	    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background-image: linear-gradient(to bottom, #ffffff00, #ffffff 100% );
    z-index: 1;
    top: 0;
    left: 0;
}





.web-development .portolio-loop-img {
    background-position: top center;
	transition: all 4s ease;
}

.web-development .portolio-loop-img:hover {
    background-position: bottom center;
}

.graphic-designs .portolio-loop-img {
    background-size: contain;
    transition: all 1s ease;
    transform: scale(1.1);
    background-repeat: no-repeat;
}

.graphic-designs .portolio-loop-img:hover {
    transform: scale(0.9);
}

.s-tab-body.s-tab2 {
    padding-top: 30px;
}

.s-tab-body.s-tab1 {
    padding-top: 22px;
}

.edwen-arrow-right {
	position: relative;
	width: 100%;
	text-align: right;
    margin-top: 30px;
}

.s-work .owl-nav, .s-work .owl-dots {
	display: none;
	visibility: hidden;
}

.animated-arrow {
    animation: arrowani 1.5s infinite;
    padding: 10px 20px;
    overflow: visible;
    font-size: unset;
}

.animated-arrow:hover {
    color: #0F1D3B;
}


#main-content {
	transition: 1s all;    
	top: 0;
    position: relative;
    width: 100%;
    z-index: 1;
	/* margin-bottom: 100vh; */
    background: #fff;
    box-shadow: 0 50px 80px rgba(86, 111, 140, 0.16);
    /*transition: all .5s linear;*/
}

#main-content.mfixed {position: relative;
    padding: 140px 4em 0em 4em;
    background: #e0e0e1;
    transition: 1s all;
    margin-bottom: 600px;
}

#main-content.mfixed header#main-header.front-page-header {
	transform: translateY(-160px);
}

.logged-in #main-content.mfixed header#main-header.front-page-header {
	transform: translateY(-190px);
}

#main-content.mfixed .edwen-hamburger {
	position: relative;
	z-index: 9;
}

#main-content .logo-svg-edwen path {
    transition: stroke 1s;
}

#main-content.mfixed .logo-svg-edwen path {
    stroke: #0F1D3B;
    transition: stroke 1s;
}

section .background-foreground {
	overflow: hidden;
}

#main-content .site-title {
	margin-top: 40px;
}


#main-content.mfixed .site-title {
	margin-top: 40px;
}

#main-content.mfixed .background-foreground .edwen-burger {
	visibility: hidden;
}
#main-content.mfixed .background-foreground header#main-header .main-header-content .col-md-8 {
	visibility: hidden;
}
#main-content.mfixed .background-banner header#main-header.front-page-header, #main-content.mfixed .inner-header header#main-header {
	width: 100%;
}
/* #main-content.mfixed .background-banner header#main-header.front-page-header .edwen-burger, #main-content.mfixed .edwen-burger {
	margin-top: 65px;
} */

#main-content .edwen-burger .edwen-hamburger span.mid, #main-content .edwen-burger .edwen-hamburger span.after {
	transition: 1s all;       
}

#main-content.mfixed .edwen-burger .edwen-hamburger span.mid {
	    -webkit-transform: rotate3d(0,0,1,45deg);
    transform: rotate3d(0,0,1,45deg);
    background: #000 !important;
}

#main-content.mfixed .edwen-burger .edwen-hamburger span.after {
	-webkit-transform: rotate3d(0,0,1,-45deg);
    transform: rotate3d(0,0,1,-45deg);
    top: auto;
    background: #000 !important;
}
#main-content.mfixed .edwen-burger .edwen-hamburger span.main {
	visibility: hidden;
}

/* contact */

.s-contact {
	/*height: 100vh;*/
	padding: 0px;        
}

img.contact-image {
    max-width: 1000px;
    position: absolute;
    left: -38%;
    margin-bottom: 100px;
    animation: updown 5s infinite;
}

.edwen-contact {
	background: #ffffff;
}

.edwen-contact-me-inner-row {
	position: relative;    
	background: #f0f0f0;
    padding: 118px 60px 80px;
}

.edwen-contact-me-inner-title {
    position: absolute;
	max-width: 250px;
    height: 250px;
    width: 100%;
    border: 2px solid #676767;
    padding: 20px;
    bottom: 100%;    
    margin-bottom: -82px;
    -webkit-transition: width 0.25s ease-out, height 0.25s ease-out 0.25s;
    transition: width 0.25s ease-out, height 0.25s ease-out 0.25s;
}

.edwen-contact-me-inner-title:hover {
    animation: borderani 2s forwards;
}

.edwen-contact-me-inner-title .edwen-heading {
	font-size: 32px;
    color: #2d2d2d;
    font-weight: 600;
    line-height: 50px;
    margin: 0;
}

.edwen-contact-me-inner-row .edwen-second-heading {
    font-weight: 400;
}

.edwen-contact-me-inner-title p {
	position: absolute;
    bottom: 0;
    font-size: 14px;
    line-height: 18px;
}

.s-contact .vert-align-outer {
    height: 600px;
    background: linear-gradient(-1200deg, rgb(83, 83, 85) 10%, rgb(12, 4, 46)) rgb(12, 4, 46);
    position: relative;
    overflow: hidden;
}

	.s2-bg1 {
		background: url(../images/s2-bg1.png);
	    position: absolute;
	    width: 1000px;
	    height: 798px;
	    top: -100px;
	    left: -200px;
	    background-size: contain;
	    background-repeat: no-repeat;
  		animation: stbone 8s infinite;
	}
	.s2-bg2 {
		background: url(../images/s2-bg2.png);
	    position: absolute;
	    width: 1000px;
	    height: 798px;
	    top: -5px;
	    left: 104px;
	    opacity: 0.8;
	    background-size: contain;
	    background-repeat: no-repeat;
  		animation: stbtwo 8s infinite;
	}
	.s2-bg3 {
		background: url(../images/s2-bg3.png);
	    position: absolute;
	    width: 1000px;
	    height: 798px;
	    top: -100px;
	    left: 106px;
	    background-size: contain;
	    background-repeat: no-repeat;
	    opacity: 0.2;
  		animation: stbthree 8s infinite;
	}
	.s2-bg4 {
		background: url(../images/s2-bg4.png);
	    position: absolute;
	    width: 1054px;
	    height: 905px;
	    top: -39px;
	    right: -234px;
	    background-size: contain;
	    background-repeat: no-repeat;
  		animation: stbfour 8s infinite;
	}
	.s2-bg5 {
		background: url(../images/s2-bg5.png);
	    position: absolute;
	    width: 1054px;
	    height: 905px;
	    top: -100px;
	    right: 0px;
	    background-size: contain;
	    background-repeat: no-repeat;
	    opacity: 0.4;
  		animation: stbfive 8s infinite;
	}

.next-row {
	height: 100vh;
}

.edwen-home-contact {
    background: #0F1D3B;
    padding: 140px 100px;
    cursor: url(../images/cursor-invert.svg),pointer!important;
    position: relative;
    box-shadow: 2px 4px 15px rgba(0, 0, 0, 0.07);
    border-radius: 6px;
    overflow: hidden;
    transition: all .5s;
}

.edwen-home-contact:hover {
	transform: scale(1.1);
	box-shadow: 0 33px 80px rgba(86,111,140,.12);
}

.edwen-home-contact img.contact-rocket {
    width: 100px;
    position: absolute;
    right: 0;
    top: 0px;
    transform: translate(-100px, 94px);
    opacity: 0.9;
  	transition: all 1s;
}

.edwen-home-contact:hover > img.contact-rocket {
    transform: translate(102px, -100px);
}

.edwen-home-contact .heading-sub {
    color: #fff;
    text-align: center;
    font-weight: 300;
}

.edwen-home-contact .start-project-button, .edwen-btn {
    display: block;
    background: #0e1a35 !important;
    width: 100% !important;
    max-width: 500px;
    padding: 20px !important;
    color: #cecece !important;
    font-size: 22px;
    margin: 0 auto;
    position: relative;
    font-family: 'Edward';
    text-transform: uppercase;
    height: auto !important;
}

.edwen-btn {
    width: auto;
}

.edwen-home-contact .start-project-button:hover > .btn-arrow-holder {
    transform: translateX(10px);
}

.edwen-home-contact .start-project-button .btn-arrow-holder {
    width: 100px;
    height: 2px;
    background-color: #cecece;
    display: block;
    position: absolute;
    z-index: 1;
    right: 38px;
    top: calc(50% - 1px);
  	transition: all .5s;
    left: unset;
}
.edwen-home-contact .start-project-button .btn-arrow {
    position: relative;
    width: 100px;
    height: 2px;
    display: block;
}

.edwen-home-contact .start-project-button .btn-arrow:before {
	content: "";
    width: 14px;
    height: 2px;
    background-color: #cecece;
    -webkit-transform: rotate(0);
    transform: rotate(40deg);
    position: absolute;
    left: 100%;
    margin-left: -13px;
    top: -4px;
}
.edwen-home-contact .start-project-button .btn-arrow:after {
	content: "";
    width: 14px;
    height: 2px;
    background-color: #cecece;
    -webkit-transform: rotate(0);
    transform: rotate(-40deg);
    position: absolute;
    left: 100%;
    margin-left: -13px;
    top: 4px;
	
}




/* site footer */

footer.site-footer {
    bottom: 0px;
    width: 100%;
    z-index: 0;
    background: #f3f3f3;
    height: 0px;
}


footer.site-footer .site-logo-footer {
	width: 66px;
    padding: 10px;
    -webkit-filter: grayscale(100%);
    filter: grayscale(100%);
    opacity: 0.4;
  	transition: all .5s;
}

footer.site-footer .bottom-container:hover .site-logo-footer {
    -webkit-filter: grayscale(0%);
    filter: grayscale(0%);
    opacity: 1;
}

footer.site-footer .bottom-container {
	border-top: 1px solid #cbcbcb;
    padding-top: 36px;
}


.footer-copyright .footer-copy {
	font-size: 12px;
    color: #797979;
}

footer.site-footer .c-header-widget {
    color: #a0a0a0;
}

footer.site-footer label.contact-info-footer, footer.site-footer label.contact-info-footer a {
    font-size: 22px;
    color: #777777;
    font-weight: 600;
    font-family: 'Edward';
    transition: .5s all;
}

footer.site-footer label.contact-info-footer:hover, footer.site-footer label.contact-info-footer a:hover {
    color: #0F1D3B;
}

.site-footer h2{
	margin-bottom: 0px;
    margin-top: 150px;
}

img.widget-img-footer {
    opacity: 0.3;
        width: 60px;
}

.info-widget-main {
    margin-top: 12px;
}

.footer-widget {
	padding: 60px 0px;
}



/*#main-content.mfixed .edwen-row {
	background: #fff;
}
*/
#main-content.mfixed .edwen-row {
	background: #fff;
}

/* banner */
section.inner-header {
	background: #fff;
    height: calc( 100vh );
    position: relative;
}

section.inner-header .header-stage {
	    position: absolute;
	    width: 100%;
		overflow: hidden;
		height: 200px;
	}


.logged-in #main-content.mfixed .site-title {
    top: 74px;
}

.logged-in #main-content.mfixed .background-banner header#main-header.front-page-header .edwen-burger, .logged-in #main-content.mfixed .edwen-burger {
    position: fixed;
    top: 40px;
}

/*.logged-in #main-content {
	margin-top: 28px;
}*/

.logged-in #main-content.mfixed {    
	margin-top: 0px;
}

.s-inner .edwen-home-contact {
    padding: 60px 100px;
    margin-bottom: 100px;
}

.s-inner .edwen-home-contact .heading-sub {
    margin-top: 0;
    margin-bottom: 16px;
}

ul.s-experiences-stage {
    list-style: none;
}

ul.s-experiences-stage li.s-experience-item {
    margin-bottom: 20px;
}

li.s-experience-item h3.s-experience-job-title {
    font-size: 26px;
    font-weight: bold;
    margin: 0px;
    color: #0F1D3B;
}

.row.s-second-row {
    margin-top: 50px;
}

.site-footer .widget-stage {
    text-align: center;
}
.site-footer .widget-stage img {
    width: 48px;
}
.site-footer h3.widget-title {
    margin-top: 20px;
    margin-bottom: 0px;
}

.site-footer  .widget-stage {
    transition: 1s all;
}
h3.widget-title {
    transition: .5s all;
}


.widget-stage .widget a, 
.widget-stage .widget p {
    opacity: 0.6;
    transition: .5s all;
}

.widget-stage:hover .widget a,
.widget-stage:hover .widget p {
    opacity: 1;
}


.widget-stage .widget, 
.widget-stage .widget a, 
.widget-stage .widget p {
    font-weight: 700;
    font-size: 21px;
    font-family: 'Edward';
}

.widget-stage .widget p {
    margin: 0;
}

.info-banner-right span {
    font-size: 26px;
    line-height: 34px;
    font-style: italic;
    text-align: right;
    display: block;
}

.background-banner .info-banner-right span {
    color: #959595;
}

img.arrow-banner {
    width: 20px;
    margin-bottom: 26px;
    animation: updownleft 1.5s infinite;
}

#main-content.mfixed section .info-banner-right {
    left: 68vw;
    transition: 1s all;
}
.edwen-loading-screen {
	position: fixed;
	top: 0;
	left: 0;
	width: 100vw;
	height: 100vh;
	z-index: 99;
	display: flex;
	justify-content: center;
	background: #fff;
	align-items: center;
	transition: transform 1s ease-in-out;
}

.edwen-loading-screen.slide-up {
	transform: translateY(-100%);
}

.content-main {
	opacity: 0;
	transform: translateY(100vh);
	transition: transform 1s ease-in-out, opacity 1s ease-in-out;
}

.content-main.show {
	opacity: 1;
	transform: translateY(0);
}

#loading-screen {
	font-size: 3em;
	font-weight: bold;
	text-align: center;
	opacity: 1;
	color: #0f1d3b;
	display: block;
	transition: opacity 1s ease-in-out;
}

#loading-screen.fade-in {
	opacity: 0;
}

.owl-item .edwen-portolio-loop:hover > .portolio-loop-title {
	opacity: 0;
	transform: scale(0.8);
}

.info-banner-cta {
    position: relative;
}


section .btn-arrow-holder, .edwen-text-btn .btn-arrow-holder {
    width: 30px;
    height: 2px;
    display: block;
    z-index: 1;
    left: 128px;
    top: calc(50% - 1px);
    transition: all .5s;
    position: absolute;
}

section .btn-arrow:before, .edwen-text-btn .btn-arrow:before {
	content: "";
    width: 14px;
    height: 2px;
    -webkit-transform: rotate(0);
    transform: rotate(40deg);
    position: absolute;
    left: 100%;
    margin-left: -13px;
    top: -4px;
}
section .btn-arrow:after, .edwen-text-btn .btn-arrow:after {
	content: "";
    width: 14px;
    height: 2px;
    -webkit-transform: rotate(0);
    transform: rotate(-40deg);
    position: absolute;
    left: 100%;
    margin-left: -13px;
    top: 4px;
	
}


.background-foreground .info-banner-cta a {
	color: #565656;
}
.background-foreground .btn-arrow-holder, .background-foreground .btn-arrow:before, .background-foreground .btn-arrow:after {
    background-color: #a5a5a5;
}

.background-foreground div#info-banner-cta-right .info-banner-cta a {
    color: #333;
}

.background-foreground div#info-banner-cta-right .btn-arrow-holder, .background-foreground div#info-banner-cta-right .btn-arrow:before, .background-foreground div#info-banner-cta-right .btn-arrow:after {
    background-color: #333;
}

.background-foreground div#info-banner-cta-right a {
    color: #333;
}

.background-banner .btn-arrow-holder {
    background-color: #959595;
}

.background-banner .info-banner-cta a {
	color: #959595;
}


.info-banner-right .info-banner-cta a {
    font-size: 16px;
}

.background-banner .btn-arrow:before {
    background-color: #959595;
}
.background-banner .btn-arrow:after {
    background-color: #959595;
}


.info-banner-right .btn-arrow-holder {
	right: 0px;
    left: unset;
}
.info-banner-right div#info-banner-cta-right {
    text-align: right;
    margin-top: 26px;
}

.info-banner-right .btn-arrow-holder {
    top: calc(50% - -2px);
}

.info-banner-right .start-project-button {
	padding-right: 44px;
}

.edwen-heading.tn {
    font-weight: 500;
    text-transform: none;
}

.edwen-gutenberg-heading {
    font-size: 30px;
    font-weight: 600;
    line-height: 46px;
    margin: 0px;
    position: relative;
    font-family: 'Edward';
}

.edwen-portfolio-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
}
.post-type-archive-portolio .edwen-portolio-loop {
    flex: 1 1 366px;
    max-width: 368px;
    display: flex;
    flex-direction: column;
    border: 1px solid #ddd;
    border-radius: 8px;
    overflow: hidden;
    background-color: #fff;
}

.post-type-archive-portolio .portolio-loop-img:hover {
    transform: scale(0.9);
}

.post-type-archive-portolio .graphic-designs .edwen-portolio-loop {
    flex: 1 1 560px;
    max-width: 560px;
}



.load-more-holder {
    padding: 40px 0px;
}

button.edwen-text-btn {
    background: transparent;
    text-align: center;
    color: #333;
    position: relative;
    padding: 0px;
}
.edwen-text-btn .btn-arrow-holder {
    margin-left: 10px;
}

.edwen-text-btn .btn-arrow:before, .edwen-text-btn .btn-arrow:after, .edwen-text-btn .btn-arrow-holder {
    background-color: #333;
}

.edwen-text-btn:hover > .btn-arrow-holder {
    transform: translateX(10px);
}

.post-type-archive .s-cta-bottom {
    margin-top: 100px;
}

.edwen-logo {
    padding-top: 42px;
}

#primary-header .edwen-logo {
    display: none;
}

.mobile-s-banner, .main-header-burger {
    display: none;
}

div#portfolio-graphics-container .portolio-loop-stage {
    height: 300px;
}

/* div#portfolio-graphics-container .portolio-loop-img {
    background-size: contain;
    background-repeat: no-repeat;
} */

.inner-pages-burger {
    display: none;
}

.edwen-inner-logo {
    display: inline-block;
    vertical-align: middle;
}

.center-header.main-nav-stage {
    display: inline-block;
    vertical-align: middle;
    width: 92%;
}

.s-inner section.s-banner {
    height: 300px;
}

.s-inner section .background-foreground {
    background: url(../images/foreground-inner.jpg);
    background-size: 100vw;
    background-repeat: no-repeat;
    background-position: 0px 0px;
}
.s-inner section .background-banner {
    background: url(../images/background-inner.jpg);
    background-size: 100vw;
    background-repeat: no-repeat;
    background-position: 0px 0px;
}

.s-inner section .background-foreground h1, .s-inner section .background-banner h1 {
    font-size: 46px;
}

.s-inner section .info-banner {
    top: 134px;
    left: 16vw;
    width: 500px;
}

.s-inner section .info-banner-right {
    top: 128px;
    left: 70vw;
}

.s-inner section .background-foreground:after {
    top: calc(150px - 15px);
}

.sho-breadcrumbs, .sho-breadcrumbs a {
    color: #959595;
    font-size: 14px;
}

.s-inner .info-banner-right span {
    font-size: 18px;
    line-height: 20px;
}

.form-row {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.form-col {
    flex: 1 1 45%; /* makes it responsive */
    min-width: 250px;
}

.edwen-form-stage input, .edwen-form-stage select, .edwen-form-stage textarea {
    width: 100%;
    height: 50px;
    padding: 12px;
    border: 1px solid #cbcbcb;
}

.edwen-form-stage textarea {
    height: 200px;
}

.edwen-form-stage {
    padding-right: 80px;
}

.edwen-form-stage p {
    margin: 10px 0px;
}

.edwen-form-stage label {
    font-size: 14px;
    color: #333;
}

.edwen-form-stage .edwen-btn {
        margin: 0;
    width: 100% !important;
    max-width: unset;
}

.portfolio-thumbnail {
    text-align: center;
    height: 600px;
    overflow: hidden;
    border: 1px solid #cbcbcb;
    box-shadow: 2px 4px 15px rgba(0, 0, 0, 0.07);
    border-radius: 6px;
    margin-bottom: 80px;
}


.portfolio-thumbnail img {
    width: 100%;
    height: auto;
}

.portolio-loop-title a {
    color: #fff;
}

.the-arrow > .shaft:before, .the-arrow > .shaft:after, .the-arrow > .shaft {
    height: 1px;
    background-color: #333;
}


@media (max-width: 767px) {
    section .info-banner-right {
        display: none;
    }

    .s-banner {
        display: none;
    }

    .mobile-s-banner {
        display: block;
    }

    section .background-banner {
        background: url(../images/mobile-background.jpg);
        background-size: cover;
        background-repeat: no-repeat;
        background-position: center;
        height: 100%;
        position: relative;
        width: 100%;
    }

    section .info-banner {
        top: unset;
        left: 40px;
        width: 380px;
        bottom: 32px;
    }

    #main-header .flex-row {
        display: block;
    }

    .edwen-logo {
        width: 25%;
        display: inline-block;
        padding-top: 10px;
        padding-left: 10px;
    }

    .nav-home {
        display: inline-block;
        width: 73%;
        vertical-align: top;
        margin-top: 20px;
    }
    body.main-fixed .nav-home {
        margin-top: 30px;
    }

    header#main-header.front-page-header {
        padding: 10px 10px;
        width: 100%;
    }
    .edwen-burger {
        position: relative;
        margin-top: 0px;
        margin-right: 0px;
        float: right;
    }

    .edwen-logo a {
        display: block;
    }

    .edwen-logo svg {
        width: 60px;
        height: 60px;
        overflow: hidden;
    }

    #main-content.mfixed {
        padding: 146px 20px 0px 20px;
    }
    body.main-fixed header#primary-header {
        width: 100%;
        left: 0px;
        margin-top: 90px;
        background: #e0e0e1;
    }
    body.main-fixed nav#main-navigation ul.menu li {
        display: block;
    }

    .main-fixed .edwen-logo {
        padding-top: 26px;
    }

    body.main-fixed header#primary-header .flex-row {
        display: block;
    }
    body.main-fixed nav#main-navigation ul.menu {
        display: block;
    }
    nav#main-navigation ul.menu li a {
        display: block;
        padding: 12px 10px;
    }

    ul#contact-menu {
        border-left: 0px;
    }

    .edwen-about-c-heading {
        font-size: 28px;
        line-height: 36px;
        margin-bottom: 14px;
    }
    .s-work .s-tab nav {
        float: none !important;
        margin-top: 0px;
    }
    .edwen-heading {
        font-size: 36px;
        line-height: 46px;
    }

    .s-work .edwen-heading {
        text-align: center;
    }

    .edwen-home-contact img.contact-rocket {
        width: 50px;
        transform: translate(-100px, 20px);
    }

    .edwen-home-contact {
        padding: 32px 16px;
    }
    .edwen-home-contact .start-project-button, .edwen-btn {
        font-size: 18px;
    }

    .edwen-home-contact .start-project-button .btn-arrow-holder {
        display: none;
    }
    .site-footer h2 {
        margin-bottom: 0px;
        margin-top: 80px;
        font-size: 50px;
        line-height: 60px;
    }
    .footer-widget-stage {
        margin-bottom: 38px;
    }
    .inner-pages-burger {
        display: block;
    }
    
    .s-inner section.s-banner, .s-inner section.mobile-s-banner {
        background: #ffffff;
        height: 248px;
        position: relative;
    }

    .s-inner section .background-banner {
        background: url(../images/background-inner.jpg);
        background-size: cover;
        background-repeat: no-repeat;
        background-position: center;
    }

    .s-inner section .info-banner {
        top: 134px;
        width: 100%;
        margin: 0 auto;
        position: relative;
        text-align: center;
        left: 0px;
    }

    .s-inner header#primary-header {
        width: 100%;
        left: 0;
        padding: 20px;
    }

    .s-inner .main-header-content {
        width: 100%;
        display: block;
    }

    .edwen-form-stage {
        padding-right: 0;
    }
    
    .contact-icon-img {
        text-align: center;
    }

    .contact-icon-img img {
        width: 50px;
    }


}