/* Rallarrosen produktion AB */

@import url('https://unpkg.com/aos@2.3.1/dist/aos.css');
 
@import url('https://fonts.googleapis.com/css2?family=Sarabun:ital,wght@0,100;0,200;0,300;0,400;0,500;0,700;1,100;1,200;1,300;1,400;1,500;1,700&display=swap');

/* SST Fonts /JOSO */
  @import url("https://use.typekit.net/jzh2nmz.css");

/* ==========================================================================
Generellt
========================================================================== */

*,
*::before,
*::after {
	box-sizing: border-box;
}

@media only screen and (hover:none) {
	*, 
	*::before,
	*::after {
		background-attachment: scroll !important;
		background-position: center center;
	}
	
	.fullscreen-bg-slider .slide {
		background-attachment: scroll !important;
		background-size: cover !important;

	}
}

html {
	font-size: 62.5%;
}

body {
    background-color: #fff;
    background-position: right center !important;
    overflow-x: hidden !important;
	background-attachment: fixed !important;
 	font-family: 'Sarabun', sans-serif;
}

@media only screen and (max-width:1366px) {
	body {
		background-size: cover !important;
	}
}
 
body.isMobile .body-background {
	background-position: center center;
	background-size: cover;
}

.LayoutPage .section-block,
.SubPage .LayoutPage .section-block {
    padding: 10rem 5rem;
}

.LayoutPage .section-block-wrapper {
	max-width: 120rem;
}

/* Video background */
.fullscreen-bg-video {
   	position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    overflow: hidden;
    z-index: -100;
}

#bg-video {
    position: absolute;
    top: 50%;
    left: 50%;
    width: auto;
    height: auto;
    min-width: 100%;
    min-height: 100%;
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
}

@media only screen and (max-width: 600px) {
	
	.LayoutPage .section-block, 
	.SubPage .LayoutPage .section-block {
	    padding: 8rem 2rem;
	}
}

/* ==========================================================================
Split Wrapper
========================================================================== */
.section-split .section-block .normaltext-type { max-width: none; }
.section-split .section-block .section-block-wrapper { max-width: 140rem; }

.section-split .section-block .btn:first-child {
	margin-right: 1rem;
}

.split-wrapper.reverse {
	flex-direction: row-reverse;
}

.split-wrapper {
    display: flex;
    flex-wrap: wrap;
    position: relative;
}

.split-wrapper.split-center {
   justify-content: center;
}

.split-wrapper.box-shadow {
	box-shadow: 0px 12px 25px rgba(0, 0, 0, 0.15);
}

.split-wrapper.box-shadow .split-image { box-shadow: none; }

.split-content {
    width: 50%;
    padding: 7rem 9rem;
    text-align: left;
    z-index: 2;
}

.split-content.content-white { background: #fff;}

.split-content.content-blue { background: linear-gradient(to right,rgba(0, 108, 166, 1), rgba(0, 40, 90, 0.89));}
.split-content.content-blue * { color:#fff; }

.split-content.align-center { display: flex; }
.split-content.align-center .split-text { align-self: center; }

.split-content.overlap {
	margin-left: -20%;
	background-color: rgba(255,255,255, 1);
}

.split-image {
    width: 50%;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.split-image img {
    position: absolute;

    transform: translate(-50%, -50%);
    top: 50%;
    left: 50%;

    height: 100%;
    min-width: 100%;
    min-height: 100%;
    max-width: none !important;
}

.split-image.contain img {
	object-fit:contain;
}

.split-image.expand,
.split-imageblock.expand {
    margin: -15rem 0;
}

.split-imageblock {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
}

.split-imageblock-image {
	height: 48%;
    overflow: hidden;
    border-radius: 2px;
    box-shadow: 0 1rem 2rem rgba(0,0,0, .1);
}

.split-image.img-auto-width {
	box-shadow: none;
	width: auto;
}

.img-contain img {
	object-fit:contain !important;
	min-width: auto !important;
	width: auto !important;
}


@supports (object-fit: cover) {
    .split-image img,
    .split-imageblock img {
        position: relative;
        transform: none;
        top: auto;
        left: auto;

        object-fit: cover;
        object-position: center;
        height: 100% !important;
        width: 100% !important;
    }
}


@media only screen and (max-width: 1080px) {
	
	.split-image {
		width: 100%;
	}
	
	.split-content {
		width: 100%;
		padding: 7rem 3rem;
	}
}

@media only screen and (max-width: 550px) {
	
	.split-wrapper.box-shadow {
		box-shadow: none;
	}
	
	.split-content {
	    padding: 8rem 3rem !important;
	}
}

/* ==========================================================================
Knappar och länkar
=========================================================================== */

.btn {
	max-width: 50rem;
    width: auto;
    box-sizing: border-box;
    padding: 2rem 4rem;
    border-radius: 4rem;
    text-align: center;
    font-size: 1.3rem;
    letter-spacing: 0.3rem;
    line-height: 1em;
    -webkit-transition: all .4s ease;
    transition: all .4s ease;
    display: inline-block;
    text-transform: uppercase;
	font-weight: 400;
	
	background: #e93b36;
	border: 2px solid #e93b36;
	color: #fff;
}

.btn:hover {
	background: transparent;
	border: 2px solid #e93b36;
	color:#fff;
}

.btn-filled-white {
	background: white;
	border: 2px solid white;
	color: #000;
}
.btn-filled-white:hover {
	background: transparent;
	border: 2px solid white;
	color: white;
}

.btn-outlined-white {
	background: transparent !important;
	border: 2px solid white;
	color: white;
}
.btn-outlined-white:hover {
	background: white !important;
	border: 2px solid white;
	color: #000;
}

.btn-outlined-black {
	background: transparent !important;
	border: 2px solid #000;
	color: white;
}
.btn-outlined-black:hover {
	background: #000 !important;
	border: 2px solid #000;
	color: white;
}

.btn-wrapper {
	margin-top: 1rem;
}

/* ==========================================================================
Text och typsnitt
========================================================================== */
p, a , li {
	line-height: 1.8;
	font-size: 1.8rem;
	color: #8d8d8d;
	font-family: inherit;
	font-weight: 300;
	text-decoration: none;
}

p { padding: 0 0 1.2em 0; }

a:hover {
	text-decoration: underline;
}

h1, h2, h3, h4, h5, h6 {
	font-family: ropa-soft-pro, sans-serif;
	font-weight: 300;
	letter-spacing: 0px;
	line-height: 1.3;
	color: #000;
	text-transform: normal;
	text-transform: none;
}

.heading { 
	font-size: 2.5rem;
	text-transform: uppercase;
	padding-bottom: 3rem;
	font-weight: 400;
	color: #e93b36;
    letter-spacing: .05em;
}

h2, h3 {
	font-size:5.4rem;
	line-height: 1.2;
	font-weight: 700;
	padding-bottom: 2rem;
	letter-spacing: 0;
	
}

.smalltext-type {
	max-width: none;
}

.normaltext-type {
    max-width: 80rem;
    margin: 0 auto;
    text-align: center;
}

@media only screen and (max-width: 768px) {
	
	.subheading {
    	font-size: 4rem;
    }
    
    .heading {
    	font-size: 2rem;
    }
}

@media only screen and (max-width: 480px) {
	
	p, a, li {
		line-height: 1.6;
		font-size: 1.65rem;
	} 
}

@media only screen and (max-width: 330px) {

	.subheading {
	    font-size: 3.5rem;
	}
	
}	

 
/* ==========================================================================
Header / Navigation
========================================================================== */
/* Header */
.EditMode header {
	margin-top: 10rem;
}

header {
    background-color: transparent;
	box-shadow: none;
    -moz-transition: 0.4s ease-in-out;
    -webkit-transition: 0.4s ease-in-out;
    transition: 0.4s ease-in-out;
	position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    box-sizing: border-box;
    z-index: 8;
    font-size: 0;
    height: 8rem;
}

header .container {
	max-width:none;
}

header.scrolled {
	background-color: #000;
}

/* Logo */
header .header-logo {
	width: 25rem;
    padding-top: 2rem;
    position: absolute;
    left: 2rem;
    
    -webkit-transition: all 500ms linear;
    -moz-transition: all 500ms linear;
    -o-transition: all 500ms linear;
    -ms-transition: all 500ms linear;
}

.scrolled .header-logo {
	width: 17rem;
    padding-top: 1.4rem;
    
    -webkit-transition: all 500ms linear;
    -moz-transition: all 500ms linear;
    -o-transition: all 500ms linear;
    -ms-transition: all 500ms linear;
}

/* Navigation btn */
nav.mainmenu ul.TemplateMenu > li {
    line-height: auto;
    height: auto;
    cursor: pointer;
}

.btn-nav {
	padding: 1.3rem 3rem !important;
	width: auto;
	font-size: 1.4rem !important;
	text-transform: uppercase;
	font-weight: 400;
	background: #e93b36;
	border: 2px solid #e93b36;
	color:#fff !important;
	border-radius: 4rem;
	line-height: 1 !important;
		    -moz-transition: 0.4s ease-in-out;
    -webkit-transition: 0.4s ease-in-out;
    transition: 0.4s ease-in-out;
   
}

.btn-nav:hover {
	background: transparent;
	border-color: #e93b36;
	color: #fff !important;
	 text-decoration: none;
}

/* NAVIGATION */
nav.mainmenu {
	text-align: right;
}

nav.mainmenu a {
	font-family: inherit;
	font-weight: 300;
	font-style: normal;
	font-size: 1.4rem;
	line-height: 8rem;
	color: #fff;
	text-transform: none;
	padding: 0;
	margin: 0 20px;
	letter-spacing: .02em;
    transition: all 300ms linear;
}

nav.mainmenu li:hover a, 
nav.mainmenu li.active a {
	color: #e83b35;
}  

nav.mainmenu li:hover, nav.mainmenu li.active {
    background-color: transparent;
}

@media only screen and (min-width: 1101px) {
    
    .hamburger {
        display: none;
    }
    
    .expandable:after {
	    font-family: 'Font Awesome 5 Pro';
	    font-weight: 700;
	    content: '\f0d7';
	    margin-left: 7px;
	    text-decoration: none;
	    display: inline-block;
	    font-size: .8em;
	    vertical-align: middle;
	}
    
}

@media only screen and (max-width: 1100px) {
    
    nav.mainmenu li.cta-btn {
	    text-align: center;
	    position: absolute;
	    bottom: 0;
/* 	    width: 100%; */
	    padding: 2rem;
    }
    
/*
    nav.mainmenu li.cta-btn a {
	    width: 100%;
    }
*/
    
    /* Navigation */
	nav.mainmenu {
		text-align: left;
		display: none;
		position: fixed;
		height: 100%;
		left: 0;
		width: 35rem;
		background-color: #000;
		z-index: 15;
		top: 0;
		box-shadow: none;
		overflow-y: scroll;
	}
	
	nav.mainmenu .Padding {
		margin: 8rem 0 !important;
	}
	
	nav.mainmenu li {
		text-align: left;
		display: block;
	}
	
	nav.mainmenu li a {
		margin: unset;
		padding: unset;
		padding-left: 4rem;
		font-size: 1.6rem;
		line-height: 3.7;
		color: #fff !important;
	}
	
	nav.mainmenu .header-btn {
		left: 4rem;
		margin-top: 2rem;
	}
	header nav.mainmenu li.header-btn a {
		padding: inherit !important;
		color: #fff !important;
	}
	header nav.mainmenu li.header-btn:hover a  {
		color: #333 !important;
	}
	
	#overlay {
	    position: fixed;
	    top: 0;
	    left: 0;
	    width: 100%;
	    height: 100%;
	    background-color: rgba(0, 0 , 0, 0.75);
	    z-index: 7;
	}
	
	/* Hamburger */
	.hamburger {
	    position: absolute;
	    z-index: 99;
	    left: auto;
	    right: 1.3rem;
	    top: 1.1rem;
	}
	
	.hamburger-inner, 
	.hamburger-inner::after, 
	.hamburger-inner::before {
		color: #fff;
		background-color: #fff;
	}
	
	/* Dropdown */
	nav.mainmenu ul > li > ul {
	    background-color: #fff !important;
	    width: auto !important;
	    border: none;
	}
	
	nav.mainmenu ul > li > ul {
		display: contents !important;
	}
	
	nav.mainmenu ul > li > ul > li a {
		color: #333 !important;
	}
	
	nav.mainmenu ul > li > ul > li > a {
	    width: auto;
	    padding: 0.5rem 0 1rem 6rem;
	}
	
	nav.mainmenu ul > li.expandable-li:hover > a {
		padding-bottom: 0;
	}
	 
	nav.mainmenu ul.TemplateMenu > li,
	.scrolled nav.mainmenu ul.TemplateMenu > li {
	    line-height: unset;
	    height: unset;
	}
	
}

@media only screen and (max-width: 600px) {
	
	header .header-logo {
    	width: 17rem !important;
    	padding-top: 1.4rem;
    }
}

/* ==========================================================================
Top-section
========================================================================== */

.top-section {
	background-color:rgba(0, 0, 0, 0.6);
	overflow: hidden;
	position: relative;	
}

.page-title-wrap {
	background-color: transparent;
    top: 53%;
    left: 50%;
    max-width: 90rem;
    margin: 0 auto;
    padding: 0;
    z-index: 3;
    text-align: center;
}

.page-title-wrap .btn-wrapper {
	margin-top: 4rem;
}

.page-title-wrap .btn {
	margin: 2rem 2rem 0;
}

.page-title-wrap h1,
.page-title-wrap h2 {
	color: #fff;
	padding:0;
	line-height: 1.3;
	text-shadow: none;
	font-weight: 300;
}

.page-title-wrap .text-label {
	font-size: 2rem;
	line-height: 1.3;
	font-weight: 700;
	color: #fff;
	padding-bottom: 2rem;
	text-transform: uppercase;
	letter-spacing: .2em;
}

.page-title-wrap h1 {
	text-transform: none;
	font-weight: 500;
	padding-bottom: 3rem;
	font-size: 6.5rem;
	line-height: 1;
}

.page-title-wrap p {
	color:#fff;
	font-weight: 400;
	max-width: 70rem;
	margin: 0 auto;
	font-size: 2rem;
}

@media only screen and (max-width: 1300px) {
	
	.page-title-wrap h1 {
		font-size: 6rem;
	}
}

@media only screen and (max-width: 800px) {
	
	.page-title-wrap {
		padding: 0 4rem;
	}
	
	.page-title-wrap h1 {
		font-size: 5rem;
	}
	
	.page-title-wrap p {
		max-width: 60rem;
	}
	
	.page-title-wrap .btn {
	    padding: 1.5rem 2.5rem !important;
	    font-size: 1.2rem;
    }
    
    .page-title-wrap {
	    top: 55%;
    }
}

@media only screen and (max-width: 600px) {
	
	.page-title-wrap h1 {
		font-size: 4.5rem;
	}
	
	.page-title-wrap p {
		font-size: 1.8rem;
		text-align: center;
	}
}

@media only screen and (max-width: 480px) {
	
	.page-title-wrap {
		padding: 0 2.5rem;
	}

	.page-title-wrap h1 {
	    font-size: 3.5rem;
	    line-height: 1.15;
	}

}

@media only screen and (max-width: 330px) {
	
	.page-title-wrap h1 {
    	font-size: 3rem;
    }
    
    .page-title-wrap .btn {
	    font-size: 1rem;
	    padding: 1.4rem 2rem;
    }
    
    .page-title-wrap p {
	    font-size: inherit;
    }
}    

/* ==========================================================================
Startsida
========================================================================== */

/* Parallax
========================================================================== */
.parallax {
    max-width: 100% !important;
    background-attachment: fixed !important;
    background-position: center center !important;
    background-repeat: no-repeat;
    background-size: cover !important;
}

.isMobile .parallax  {
	background-attachment: scroll !important;
	max-width: 100% !important;
	background-size: cover !important;
}
	
/* Startsida: Om oss
========================================================================== */
.about .split-content { display: flex; padding: 12rem 12rem; width: 45%; background: #000; }
.about .split-text {
	align-self: center;
}

.about .split-image { width: 55%; }

.about .split-content *:not(strong) {
	color:#fff;
}

.about .section-block .section-block-wrapper { 
	max-width: none;
}

@media only screen and (max-width: 1466px) {
	.about .split-content { 
		padding: 12rem 7rem;
	}
}

@media only screen and (max-width: 1380px) {
	
	.about .split-content {
		width: 55%;
	}
	
	.about .split-image { width: 45%; }
}

@media only screen and (max-width: 1100px) {
	
	.about .split-content {
		padding: 10rem 4rem;
	}
	
}

@media only screen and (max-width: 1000px) {
	
	.about .split-content,
	.about .split-image {
		width: 100%;
	}
	
	.about .split-wrapper {
		flex-direction: column-reverse;
	}
	
}

/* Startsida: Tjänster
========================================================================== */
.services {
	overflow: hidden;
}

.services .section-block-wrapper {
	max-width: 140rem;
}

.product-items-wrapper {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 7rem;
}

.product-item {
	width: 31%;
	margin: 1%;
	display: flex;
	flex-wrap: wrap;
	height: 40rem !important;
	overflow:hidden;
	position: relative;
    box-sizing: border-box;
	background-color: #fff;
	border-radius: 4px;
	text-decoration: none !important;
	-moz-transition: 0.3s ease-in-out;
    -webkit-transition: 0.3s ease-in-out;
    transition: 0.3s ease-in-out;
    cursor: pointer;
}

.product-item .product-image {
	width: 100%;
	height: 100%;
}

.product-item img {
    display: block !important;
    object-fit: cover;
    object-position: center;
    height: 100% !important;
    width: 100% !important;
}

.product-item .product-text {
    text-align: center;
    position: absolute;
    display: flex;
    top: auto;
    left: 0;
    bottom: 0;
    right: 0;
    height: 20%;
    width: 100%;
    z-index: 2;
    background: rgba(0, 0, 0, 0.45);
    cursor: pointer;
    -moz-transition: 0.3s ease-in-out;
    -webkit-transition: 0.3s ease-in-out;
    transition: 0.3s ease-in-out;
}

.product-item .product-text .centered-text {
	align-self: center;
	width: 100%;
	text-align: center;
}

.product-item .product-text * {
	color:#fff;
}

/* Titel */
.product-item .product-text .heading {
    font-size: 2rem;
    font-weight: 500;
    text-transform: none;
    padding-top: 0 !important;
    font-family: 'Sarabun', sans-serif;
    letter-spacing: 0;
    padding: 0;
    
}

.product-item .product-link {
	display: block;
	position: absolute;
	bottom: 0;
	left: 0;
	text-align: center;
	width: 100%;
	color:#fff;
	background-color: #353c3e;
	height: 60px;
	line-height: 60px;
	z-index: 4;
	-moz-transition: 0.3s ease-in-out;
    -webkit-transition: 0.3s ease-in-out;
    transition: 0.3s ease-in-out;
}

.product-item:hover .product-link {
	background: #d71c1b;
}

.product-item:hover .product-text {
    background: rgba(232, 59, 53, 0.73); 
}

.product-item:hover .product-text * {
	color:#fff
}

@media only screen and (max-width: 1100px) {
	
	.product-item {
		width: 98%;
		margin: 1%;
	}
	
}

@media only screen and (max-width: 550px) {
	.product-item {
	    width: 100%;
	}
	
}

/* Slick settings  */
.services .slick-list.draggable {
    overflow: visible;
}

.services .slick-prev, 
.services .slick-next {
	bottom: -8rem;
    top: auto;
    width: 4rem;
    height: 4rem;
    border: 1px solid #000;
    border-radius: 3px;
}

.services .slick-prev {
	left: 5rem;
}

.services .slick-next {
	left: 10rem;
}

.services .slick-prev:before, 
.services .slick-next:before {
	color: #000;
	font-family: 'Font Awesome 5 Pro';	
}

.services .slick-prev::before {
	content: '\f104';
}

.services .slick-next::before {
	content: '\f105';
}

@media only screen and (max-width: 1024px) {
	.services .slick-prev {
		left: 2rem;
	}
	
	.services .slick-next {
		left: 7rem;
	}
}

/* Startsida: Omdömen
========================================================================== */

.reviews.parallax {
	background-image: url('/assets/images/rallarrosen-parallax-2000px.jpg');
}

.reviews .section-block {
	padding: 10rem 4rem;
	background-color: rgba(0,0,0,0.5);
}

.review-wrap {
	margin: 0 0 3rem;
	display:flex;
	flex-wrap: wrap;
	justify-content: center;
}

.review {
	width: calc((100% / 3) - 2rem);
	padding: 2rem;
	margin: 1rem 1rem 3rem;
	display: flex;
	align-items: center;
	justify-content: space-between;
	background: rgba(0,0,0,0.1);
	backdrop-filter: blur(10px);
	-webkit-backdrop-filter: blur(10px);
	flex-direction: column;
		
	height: auto !important;
	align-self: stretch;
}

.review p {
	color: #fff;
}

.review p:first-of-type {
	text-align: center;
	font-size: 2rem;
	letter-spacing: 0.2rem;
	color: #daa520;
}

.review p:last-of-type {
	text-align: right;
	display: inline;
	width:100%;
	font-weight: 400;
	font-size:1.6rem;
	margin-top:20px;
}

@media only screen and (max-width: 980px) {
	
	.review {
		width:calc(100% - 2rem);
	}
}

/* Slick settings */
.reviews .slick-track {
	display: flex !important;
}

.reviews .slick-dots {
	bottom: -4rem;
}

.reviews .slick-dots li {
	margin: 0 0.6rem !important;
}

.reviews .slick-dots li button:before {
    color: #fff;
    font-size: 0;
    border: 2px solid #fff;
    border-radius: 5rem;
    opacity: 1 !important;
    width: 1rem;
    height: 1rem;
}

.reviews .slick-dots li.slick-active button:before {
    color: #fff;
    font-size: 0;
    border: 2px solid #fff;
    border-radius: 5rem;
    background-color: #fff;

}

/* Startsida: Instagram
========================================================================== */
.instagram .section-block {
	border: 1rem solid #fff;
}

/* ==========================================================================
Undersidor - alla undersidor
========================================================================== */
.SubPage .top-section {
	display: none;
}

.SubPage .LayoutPage {
	padding-top: 8rem;
}

.SubPage header {
	background-color: #000;
}

.SubPage .header-logo {
	width: 17rem;
    padding-top: 1.4rem;
}

/* Undersida: Våra projekt
========================================================================== */

.projects .section-block-wrapper {
	max-width: 130rem;
}

.projects p {
	text-align: center;
	max-width: 70rem;
	margin: 0 auto;
	padding-bottom: 3em;
}

.projects .project-thumb-wrapper {
	width: 100%;
	max-width: 100%;
	border: 0 !important;
	margin: 0 !important;
	box-shadow: none;
}

.projects .project-gallery {
	margin-top: 5rem;
}

.projects .product-gallery {
	width: 31.33%;
	padding: 0;
	margin: 1%;
	display: inline-block;
	vertical-align: top;
	list-style-type: none;
	background-color: #fff;
	box-shadow: none;
}

.projects .product-gallery p {
	text-align: left;
    padding: 2rem;
    color: #fff;
    font-weight: 400;
    font-family: inherit;
    text-transform: unset;
    letter-spacing: 0.03em;
    font-family: 'Oswald', sans-serif;
    background-color: #e93b36;
    border-bottom-left-radius: 1rem;
    border-bottom-right-radius: 1rem;
}

.projects .product-gallery li {
	font-size: 0;
}

.product-gallery .project-thumb-wrapper:nth-child(1) {
    display: block;
}
.product-gallery .project-thumb-wrapper {
    display: none ;
}


.gallery-title {
	padding-top: 8rem;
}

@media only screen and (max-width: 1000px) {
	
	.projects .product-gallery {
		width: 48%;
		padding: 0 !important;
		margin-bottom: 2.5rem;
	}	
}


@media only screen and (max-width: 768px) {
	
	.projects .product-gallery {
		width: 100%;
		padding: 0 !important;
		margin-bottom: 2.5rem;
	}	
}

@media only screen and (max-width: 600px) {
	
	.projects .product-gallery {
		width: 100%;
		padding: 0 !important;
		margin-bottom: 2.5rem;
	}	
}

/* ==========================================================================
Offertförfrågan
========================================================================== */


/* Sektion: kontaktformulÃ¤r
========================================================================== */
.LayoutPage .contact-section .section-block-wrapper {
	max-width: 90rem;
}

.contact-section .heading-type * {
	text-align: center;
}

.contact-section .heading-type {
	padding-bottom: 2rem;
	max-width: 70rem;
	margin: 0 auto;
}


.contact-form .section-block .col-0 {
	background: #fff;
	padding: 4rem;
	padding-bottom: 1rem;
	border-radius: 15px;
}

.LayoutPage .Contact .ContactForm {
    display: flex;
    flex-wrap: wrap;
}

.LayoutPage .Contact .ContactForm div {
    width: 48%;
    margin: 1%;
    text-align: left;
}


.LayoutPage .Contact .ContactForm div.ContactFormMessage {
	position: relative;
	padding-top: 0;
	width: 100%;
}

.LayoutPage .Contact .ContactForm div.ContactFormMessage p, 
.LayoutPage .Contact .ContactForm .ContactFormEmail p, 
.LayoutPage .Contact .ContactForm .ContactFormField p, 
.LayoutPage .Contact .ContactForm .ContactFormName p {
    color: #333;
    font-size: inherit;
	margin-bottom: 0.5rem !important;
	margin-top: 1rem;
}


.LayoutPage .Contact .ContactForm input.text, 
.LayoutPage .Contact .ContactForm textarea.textmessage {
    background-color:#f9f9f9;
	border:none !important;
	box-shadow: 0 .2rem .5rem rgba(0, 0, 0, 0.0);
    border-radius: 0;
    height: 4rem !important;
    padding: .5rem 2rem;
    border: 1px solid rgba(152, 152, 152, 0.25) !important;
}

.LayoutPage .Contact .ContactForm input.ContactSubmit {
    padding: 2rem 2rem;
    background: #e93b36;
    border: 2px solid #e93b36;
    color: #fff;
    border-radius: 25rem;
    font-size: 1.4rem;
    width: 100% !important;
    max-width: 50rem !important;
    margin: 0 auto;
	display: block;
	font-weight: 500;
    -webkit-transition: 0.4s ease-in-out;
    transition: 0.4s ease-in-out;
    text-transform: uppercase;
    letter-spacing: 3px;
}

.LayoutPage .Contact .ContactForm input.ContactSubmit:hover {
	background: transparent;
	border: 2px solid #e93b36;
	color: #222;
}

.LayoutPage .Contact .ContactForm textarea.textmessage {
    height: 20.5rem !important;
}


.LayoutPage .form-part .ContactSentMessage, .Contact .ContactSentMessage {
    background-color: #1f9cd9 !important;
    box-shadow: 0px 5px 13px rgba(0, 0, 0, 0.15);
    margin-bottom: 40px;
    border-radius: 20px 0;
}

.LayoutPage .form-part .ContactSentMessage p {
	font-size: 1.6rem;
	color:#fff;
	letter-spacing: 0.5px;
}

.LayoutPage .form-part .ContactSentMessage p:first-child {
	font-size: 2rem;
    margin: 0;
    padding-bottom: 5px;
}

@media only screen and (max-width: 650px) {
	.LayoutPage .Contact .ContactForm div {
		width: 100%;
		margin:0;
	}

	.LayoutPage .Contact .ContactForm input.ContactSubmit {
		display: block;
		margin: 1.5rem auto;
	}
}


/* ==========================================================================
Footer
========================================================================== */

.footer {
	background-color: rgba(0,0,0,0.95);
	padding: 0;
	box-sizing: border-box;
}

.footer .container {
	max-width: none;
	box-sizing: border-box;
	margin: 0 auto;
	padding:0;
}

.footer .footer-top {
    max-width: 140rem;
	min-height: 15rem;
	padding: 7rem 3rem 7rem 3rem;
	box-sizing: border-box;
	display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin: 0 auto;
}

.footer-col-top {
	width: 20%;
	box-sizing: border-box;
}

.footer-col-top:nth-child(1) p {
	padding-bottom: 0.6em;
}

.footer-col-top:nth-child(2) {
	width: 40%;
}

.footer img {
	width: 18rem;
	height: auto;
}

.footer ul {
	margin: 0;
	list-style: none;
	padding-left: 0;
}

.footer .container .footer-wrapper {
	width: 100%;
	text-align: center;
	margin: 0 auto;
}

.footer .footer-bottom {
	text-align: center !important;
	margin: 0 auto;
	width: 100%;
	margin: 0 auto;
	box-sizing: border-box;
	background: #e93b36;
	max-width: none;
	padding: 2rem;
    box-sizing: border-box;	
    display: flex;
    flex-wrap: wrap-reverse;
    justify-content: space-between;
    flex-direction: row;
    line-height: 1rem;  
}

.footer-col-bottom {
    width: 100%;
    box-sizing: border-box;
}

.footer-col-bottom:first-child p {
	display: inline-block;
	text-transform: uppercase;
	font-weight: 500;
    letter-spacing: 1px;
    font-size: 1.2rem;
    text-align: center;
    color:#fff;
}

.footer .social-icons {
	padding-top: 10px;
}

.footer p, 
.footer a,
.footer li {
    font-size: 1.5rem;
    padding: 0;
    font-weight: 300; 
    line-height: 1.6em;
    letter-spacing: normal;
    padding-bottom: 4px;
    color: #9f9494;
    text-decoration: none !important;
	font-family: 'Sarabun', sans-serif;
	letter-spacing: 0.015em;
}

.footer h5 {
    font-size: 2.5rem;
    text-transform: none;
    letter-spacing: normal;
    padding-bottom: 1.2rem;
    font-weight: 500;
    padding-top: 0;
    letter-spacing: 0;
    font-style: normal;
    color: inherit;
    color: #fff !important;
}

.footer .footer-top * {
	text-align: left;
	color: #fff;
}

.footer a {
	display: inline-block;
	 
    -webkit-transition: all .4s ease;
    transition: all .4s ease;
}

.footer a:hover {
    color: #fff !important;
    text-decoration: underline !important;
    -webkit-transition: all .4s ease;
    transition: all .4s ease;
}

.footer h3:before {
	display: none;
}

.footer .container .fab:hover { color: #e93b36 !important; }

.footer .container .fab {
	vertical-align: sub;
	color: #fff !important;
	display: inline-block;
	margin: 0;
	
	-webkit-transition: all .4s ease;
    transition: all .4s ease;
}

.footer p span {
	color: #e93b36 !important;
}

/* WebbEss Stamp  */
.webbess-stamp {
    display: flex;
    align-items: center;
    padding: 0;
    font-size: 1.3rem;
    font-weight: normal;
}

.webbess-stamp img {
    width: 3rem;
    margin-left: 1rem;
    filter: invert();
}

a.webbess-stamp{
	color: white;
}
@media only screen and (max-width: 1100px) {
	
	.footer-col-top {
    	width: 25%;
    }
}

.footer-col-top:nth-child(3) * {
	text-align: center !important;
}

@media only screen and (max-width: 820px) {
	
	.footer .footer-bottom {
		min-height: auto;
	}
	
	.footer-col-top {
		width: 100% !important;
		max-width: 55rem;
		margin: 0 auto 3rem;
	}
	
	.footer-col-top:last-child {
		margin-bottom: 0;
	}
	
	.footer-col-bottom {
		width: 100%;
		margin: 10px 0; 
	}
	
	.footer-top *,
	.footer-col-bottom:last-child p {
		text-align: center !important;
	}
	
	.footer h4 {
		padding-bottom: 10px;
	}
}