	@charset "utf-8";
/* CSS Document */

.clearfix:before, .clearfix:after {
    content: " ";
    display: table;
}
.clearfix:after {
   clear:both;	
}

/*//////////////////////////////////////////////////////////////////*/
#content section {
	width:100%;
}
#content section .innersection {
	width:100%;
}
/*welcome*/
#content #welcome {
	position:relative;
}
#content #welcome::before{
	content:'';
	position:absolute;
	background-color:var(--blue);
}
#content #welcome .innersection {
	display:flex;
}
#content #welcome .innersection .imgcontainer{
	position:relative;
}
#content #welcome .innersection .imgcontainer:before{
	content:'';
	position:absolute;
	top:-30px;
	left:-30px;
	width:60%;
	height:60%;
	border-top:solid 30px var(--red);
	border-left:solid 30px var(--red);
	z-index:1;
}
#content #welcome .innersection .imgcontainer img{
	width: 0;
	height: 0;
	width: 100%;
    height: 100%;
    object-fit: cover;
}
#content #welcome .innersection .txtcontainer {
}
#content #welcome .innersection .txtcontainer span{
	text-align:justify;
}
#content #welcome .innersection .txtcontainer h3{
	font-family: 'OpenSans-ExtraBold', sans-serif!important;
	color:var(--blue);
	position:relative;
	margin:0 0 1em 0;
	white-space:nowrap;
	z-index:5;
}
#content #welcome .innersection .txtcontainer h3:before{
	font-family: 'OpenSans-Regular', sans-serif!important;
	color:var(--greyd1d1d1);
	content:'20 χρόνια';
	position:absolute;
	z-index:-1;
}
#content #welcome .innersection .txtcontainer h3:after{
	font-family: 'OpenSans-Regular', sans-serif!important;
	color:var(--greyd1d1d1);
	content:'εμπειρία στην τυπογραφία';
	position:absolute;
	white-space:nowrap;
	z-index:-1;
}
#content #welcome .innersection .txtcontainer .more {
	display:block;
	position:relative;
	color: var(--greyf1f1f1);
	background-color:var(--blue);
	font-weight:normal;
	text-decoration:none;
	width:fit-content;
	margin:3em 0 0 0 ;
}
#content #welcome .innersection .txtcontainer .more span {
      position: relative;
      z-index: 1;
}
#content #welcome .innersection .txtcontainer .more span i{
	background-color:var(--greyf1f1f1);
	color:var(--blacklight);
	border:solid 1px var(--greyd1d1d1);
	padding:.4em .5em;
	margin-left:1em;
	font-size:.9em;
}
#content #welcome .innersection .txtcontainer .more:hover {
	color: var(--blacklight);
}
#content #welcome .innersection .txtcontainer .more::before,
#content #welcome .innersection .txtcontainer .more::after{
	-moz-transition: all .3s linear;
	-webkit-transition: all .3s linear;
	-ms-transition: all .3s linear;
	-o-transition: all .3s linear;
	position:absolute;
	top:0;
	left:0;
	content:'';
	background-color:var(--yellow);
	height:100%;
	width:100%;
	transform: scaleX(0);
	transform-origin: left;
}
#content #welcome .innersection .txtcontainer .more::before {
	animation: growLeft 0.4s forwards;
}
#content #welcome .innersection .txtcontainer .more:not(:hover)::before {
  animation: shrinkRight 0.4s forwards;
}
#content #welcome .innersection .txtcontainer .more:hover:before{
	transform: scaleX(1);
}
#content #welcome .innersection .txtcontainer .more:hover:after{
	transform: scaleX(0);
}
/*services*/
#content #services {
	position:relative;
	background-color:var(--greyf1f1f1);
}
#content #services .text{
	color:var(--blacklight);
	width:100%;
	margin:3em auto 0 auto;
}
#content #services h3{
	font-family: 'OpenSans-ExtraBold', sans-serif!important;
	color:var(--purple);
	position:relative;
	margin:0 auto 1em auto;
	white-space:nowrap;
	text-align:center;
	width:fit-content;
	z-index:5;
}
#content #services h3:before{
	font-family: 'OpenSans-Regular', sans-serif!important;
	color:var(--greyd1d1d1);
	content:'προσαρμοσμένες ';
	position:absolute;
	z-index:-1;
}
#content #services h3:after{
	font-family: 'OpenSans-Regular', sans-serif!important;
	color:var(--greyd1d1d1);
	content:'στις απαιτήσεις σας';
	position:absolute;
	white-space:nowrap;
	z-index:-1;
}
#content #services .innersection{
	width:100%;
	margin:4em auto;
	padding:2em 0;
	display:flex;
	flex-wrap:wrap;
	justify-content: space-evenly;
	align-items: flex-start;
}
#content #services .innersection .box{
	display:flex;
	#gap:2em;
	#flex-direction:column;
	position:relative;
	background-color:var(--white);
	align-items:strech;
}
#content #services .innersection .boxstrech{
	align-items:flex-start;
}
#content #services .innersection .box .imgcontainer{
	padding:0;
}
#content #services .innersection .box .imgcontainer img{
	width: 0;
	height: 0;
	width: 100%;
    height: 100%;
    object-fit: cover;
}
#content #services .innersection .box .txtcontainer{
	color:var(--blacklight);
	padding:1em 0;
}
#content #services .innersection .box:nth-child(3) .txtcontainer,
#content #services .innersection .box:nth-child(4) .txtcontainer{
	order:1;
}
#content #services .innersection .box:nth-child(3) .imgcontainer,
#content #services .innersection .box:nth-child(4) .imgcontainer{
	order:2;
}
#content #services .innersection .blue{
	background-color: var(--blue);
}
#content #services .innersection .red{
	background-color: var(--red);
}
#content #services .innersection .yellow{
	background-color: var(--yellow);
}
#content #services .innersection .purple{
	background-color: var(--purple);
}
#content #services .innersection .green{
	background-color: var(--green);
}
#content #services .innersection .orange{
	background-color: var(--orange);
}
#content #services .innersection .box .txtcontainer h4{
	font-family: 'OpenSans-Regular', sans-serif!important;
	position:relative;
	margin:0 0 0 0;
	padding:1em ;
	#white-space:nowrap;
	width:fit-content;
}
#content #services .innersection .box .txtcontainer span{
	line-height:150%;
	padding:0 1em;
}
#content #services .innersection .box .txtcontainer .spanactive{
	overflow: visible;
	display: block;
}
#content #services .innersection .box .txtcontainer .more{
	display:block;
	text-decoration:none;
	width:fit-content;
	color:var(--blacklight);
}
#content #services .innersection .box .txtcontainer .more:hover {
	color: var(--greyf1f1f1);
	background-color:var(--blue);
}
#content #services .innersection .box .txtcontainer .more:after{
	-moz-transition: all .3s linear;
	-webkit-transition: all .3s linear;
	-ms-transition: all .3s linear;
	-o-transition: all .3s linear;
	font-family: 'FontAwesome';
	content: "\f063";
	margin-left:10px;
	vertical-align:middle;
	font-weight:normal;
}
#content #services .innersection .box .txtcontainer .changed::after {
	font-family: 'FontAwesome';
	content: "\f062";
	margin-left:10px;
	vertical-align:middle;
	font-weight:normal;
}
#content #services .innersection .box .txtcontainer .more:hover:after{
	margin-left:20px;
}
/*faos*/
#content #faos {
	position:relative;
	#background-color:var(--greyf1f1f1);
}
#content #faos .imgcontainer{
	position:relative;
	margin:0 auto 3em auto;
}
#content #faos .imgcontainer img{
	width:100%;
	height:100%;
}
#content #faos .innersection{
	width:100%;
	margin:4em auto;
	padding:2em 0;
	display:flex;
	justify-content: space-evenly;
}
#content #faos .innersection .box{
	position:relative;
	background-color:var(--greyf1f1f1);
	padding:1em 2em;
}
#content #faos .innersection .box:hover i,
#content #faos .innersection .box:hover h3,
#content #faos .innersection .box:hover span{
	color: var(--white);
}
#content #faos .innersection .box:hover .more {
	background-color: var(--white);
}
#content #faos .innersection .box:hover .more i{
	color: var(--orange)!important;
}
#content #faos .innersection .box::before,
#content #faos .innersection .box::after{
	-moz-transition: all .3s linear;
	-webkit-transition: all .3s linear;
	-ms-transition: all .3s linear;
	-o-transition: all .3s linear;
	content:'';
	position:absolute;
	top:0;
	left:0;
	width:100%;
	height:100%;
	transform: scaleY(0);
	transform-origin: top;
	background-color:var(--orange);
}
#content #faos .innersection .box::before {
	animation: growTop 0.4s forwards;
}
#content #faos .innersection .box:not(:hover)::before {
  animation: shrinkBottom 0.4s forwards;
}
#content #faos .innersection .box:hover:before{
	transform: scaleY(1);
}
#content #faos .innersection .box:hover:after{
	transform: scaleY(0);
}
#content #faos .innersection .box i{
	position: relative;
    z-index: 1;
}
#content #faos .innersection .blue i{
	color:var(--blue);
}
#content #faos .innersection .purple i{
	color:var(--purple);
}
#content #faos .innersection .orange i{
	color:var(--orange);
}
#content #faos .innersection .yellow i{
	color:var(--yellow);
}
#content #faos .innersection .box h3{
	font-family: 'OpenSans-ExtraBold', sans-serif!important;
	position: relative;
    z-index: 1;
}
#content #faos .innersection .box span{
	display:block;
	text-align:justify;
	position: relative;
    z-index: 1;
}
#content #faos .innersection .box .more{
	position:absolute;
	background-color: var(--orange);
	border-radius:100%;
}
#content #faos .innersection .box .more i{
	color:var(--white)!important;
}
/*books*/
#content #books {
	position:relative;
	background-color:var(--greyf1f1f1);
}
#content #books h3{
	font-family: 'OpenSans-ExtraBold', sans-serif!important;
	color:var(--orange);
	position:relative;
	margin:0 auto 1em auto;
	white-space:nowrap;
	text-align:center;
	width:fit-content;
	z-index:5;
}
#content #books h3:before{
	font-family: 'OpenSans-Regular', sans-serif!important;
	color:var(--greyd1d1d1);
	content:'Νέες ';
	position:absolute;
	z-index:-1;
}
#content #books h3:after{
	font-family: 'OpenSans-Regular', sans-serif!important;
	color:var(--greyd1d1d1);
	content:'βιβλίων';
	position:absolute;
	white-space:nowrap;
	z-index:-1;
}
#content #books .innersection{
	width:100%;
	margin:4em auto;
	padding:2em 0;
}
#content #books .innersection .box{
}
#content #books .innersection .box .imgcontainer{
	width:100%;
	height:400px;
	position:relative;
	overflow:hidden;
}
#content #books .innersection .box .imgcontainer img{
	width: 0;
	height: 0;
	width: 100%;
    height: 100%;
    object-fit: contain;
}
#content #books .innersection .box a:hover img{
	transform: scale(1.1);
	filter: grayscale(25%);
}
#content #books .innersection .more {
	display:block;
	position:relative;
	color: var(--greyf1f1f1);
	background-color:var(--orange);
	font-weight:normal;
	text-decoration:none;
	width:fit-content;
	margin:3em auto 0 auto ;
}
#content #books .innersection .more span {
      position: relative;
      z-index: 1;
}
#content #books .innersection .more span i{
	background-color:var(--greyf1f1f1);
	color:var(--blacklight);
	border:solid 1px var(--greyd1d1d1);
	padding:.4em .5em;
	margin-left:1em;
	font-size:.9em;
}
#content #books .innersection .more:hover {
	color: var(--blacklight);
}
#content #books .innersection .more::before,
#content #books .innersection .more::after{
	-moz-transition: all .3s linear;
	-webkit-transition: all .3s linear;
	-ms-transition: all .3s linear;
	-o-transition: all .3s linear;
	position:absolute;
	top:0;
	left:0;
	content:'';
	background-color:var(--yellow);
	height:100%;
	width:100%;
	transform: scaleX(0);
	transform-origin: left;
}
#content #books .innersection .more::before {
	animation: growLeft 0.4s forwards;
}
#content #books .innersection .more:not(:hover)::before {
  animation: shrinkRight 0.4s forwards;
}
#content #books .innersection .more:hover:before{
	transform: scaleX(1);
}
#content #books .innersection .more:hover:after{
	transform: scaleX(0);
}
/*demand*/
#content #demand {
	padding:0;
	position:relative;
	background-color:var(--yellow);
	display:flex;
	align-items:stretch;
}
#content #demand .imgcontainer{
}
#content #demand .imgcontainer img{
	width: 0;
	height: 0;
	width: 100%;
    height: 100%;
    object-fit: cover;
}
#content #demand .txtcontainer{
	position:relative;
}
#content #demand .txtcontainer:before {
	content:'';
	position:absolute;
	top:0;
	right:0;
  --p: 50%; /* control the shape (can be percentage) */
	width:100%;
	height: 100%;
	aspect-ratio: 1;
	clip-path: polygon(0 0,100% 0,100% calc(100% - var(--p)),0 100%);
	background-color: var(--greyf1f1f1);
	opacity:.15;
	z-index:1;
}
#content #demand .txtcontainer h5{
	font-family: 'OpenSans-ExtraBold', sans-serif!important;
	color:var(--white);
	position:relative;
	margin:0 auto 0 auto;
	width:fit-content;
	text-align:center;
	z-index:5; 
	text-shadow: 0 1px 5px rgb(0 0 0 / 50%);
}
#content #demand .txtcontainer h6{
	font-family: 'OpenSans-ExtraBold', sans-serif!important;
	color:var(--red);
	position:relative;
	margin:1em auto 1em auto;
	width:fit-content;
	text-align:center;
	z-index:5; 
	#text-shadow: 0 1px 5px rgb(0 0 0 / 75%);
	padding:.5em 1em;
	#border-radius:.25em;
	background-color:rgba(255,255,255,.5);
}
#content #demand .txtcontainer h6::before{
	display:block;
	position:absolute;
	top:-.75em;
	left:-.5em;
	font-family: 'FontAwesome';
	text-shadow: 0 0 0 rgb(0 0 0 / 0%);
	color: var(--greyf1f1f1);
	opacity:.25;
	content: "\f10d";
	z-index:-1;
}
#content #demand .txtcontainer h6::after{
	display:block;
	position:absolute;
	bottom:-.75em;
	right:-.5em;
	font-family: 'FontAwesome';
	text-shadow: 0 0 0 rgb(0 0 0 / 0%);
	color: var(--greyf1f1f1);
	opacity:.25;
	content: "\f10e";
	z-index:-1;
}
#content #demand .txtcontainer .text{
	color:var(--blacklight);
	width:75%;
	margin:0 auto;
	text-align:center;
}
#content #demand .txtcontainer .more {
	display:block;
	position:relative;
	color: var(--greyf1f1f1);
	background-color:var(--red);
	font-weight:normal;
	text-decoration:none;
	width:fit-content;
	margin:3em auto 0 auto ;
}
#content #demand .txtcontainer .more span {
      position: relative;
      z-index: 1;
}
#content #demand .txtcontainer .more span i{
	background-color:var(--greyf1f1f1);
	color:var(--blacklight);
	border:solid 1px var(--greyd1d1d1);
	padding:.4em .5em;
	margin-left:1em;
	font-size:.9em;
}
#content #demand .txtcontainer .more:hover {
	color: var(--blacklight);
}
#content #demand .txtcontainer .more::before,
#content #demand .txtcontainer .more::after{
	-moz-transition: all .3s linear;
	-webkit-transition: all .3s linear;
	-ms-transition: all .3s linear;
	-o-transition: all .3s linear;
	position:absolute;
	top:0;
	left:0;
	content:'';
	background-color:var(--yellow);
	height:100%;
	width:100%;
	transform: scaleX(0);
	transform-origin: left;
}
#content #demand .txtcontainer .more::before {
	animation: growLeft 0.4s forwards;
}
#content #demand .txtcontainer .more:not(:hover)::before {
  animation: shrinkRight 0.4s forwards;
}
#content #demand .txtcontainer .more:hover:before{
	transform: scaleX(1);
}
#content #demand .txtcontainer .more:hover:after{
	transform: scaleX(0);
}
/*faq*/
#content #faq {
	position:relative;
	background-color:var(--greyf1f1f1);
}
#content #faq h3{
	font-family: 'OpenSans-ExtraBold', sans-serif!important;
	color:var(--blue);
	position:relative;
	margin:0 auto 1em auto;
	white-space:nowrap;
	text-align:center;
	width:fit-content;
	z-index:5;
}
#content #faq h3:before{
	font-family: 'OpenSans-Regular', sans-serif!important;
	color:var(--greyd1d1d1);
	content:'Συχνές ';
	position:absolute;
	z-index:-1;
}
#content #faq h3:after{
	font-family: 'OpenSans-Regular', sans-serif!important;
	color:var(--greyd1d1d1);
	content:'Απαντήσεις';
	position:absolute;
	white-space:nowrap;
	z-index:-1;
}
#content #faq .innersection{
	width:100%;
	margin:4em auto;
	padding:2em 0;
}
#content #faq .innersection .more {
	display:block;
	position:relative;
	color: var(--greyf1f1f1);
	background-color:var(--blue);
	font-weight:normal;
	text-decoration:none;
	width:fit-content;
	margin:3em auto 0 auto ;
}
#content #faq .innersection .more span {
      position: relative;
      z-index: 1;
}
#content #faq .innersection .more span i{
	background-color:var(--greyf1f1f1);
	color:var(--blacklight);
	border:solid 1px var(--greyd1d1d1);
	padding:.4em .5em;
	margin-left:1em;
	font-size:.9em;
}
#content #faq .innersection .more:hover {
	color: var(--blacklight);
}
#content #faq .innersection .more::before,
#content #faq .innersection .more::after{
	-moz-transition: all .3s linear;
	-webkit-transition: all .3s linear;
	-ms-transition: all .3s linear;
	-o-transition: all .3s linear;
	position:absolute;
	top:0;
	left:0;
	content:'';
	background-color:var(--yellow);
	height:100%;
	width:100%;
	transform: scaleX(0);
	transform-origin: left;
}
#content #faq .innersection .more::before {
	animation: growLeft 0.4s forwards;
}
#content #faq .innersection .more:not(:hover)::before {
  animation: shrinkRight 0.4s forwards;
}
#content #faq .innersection .more:hover:before{
	transform: scaleX(1);
}
#content #faq .innersection .more:hover:after{
	transform: scaleX(0);
}
/*touch*/
#content #touch {
	position:relative;
	background-color:var(--white);
}
#content #touch h3{
	font-family: 'OpenSans-ExtraBold', sans-serif!important;
	color:var(--blue);
	position:relative;
	margin:0 auto 1em auto;
	white-space:nowrap;
	text-align:center;
	width:fit-content;
	z-index:5;
}
#content #touch h3:before{
	font-family: 'OpenSans-Regular', sans-serif!important;
	color:var(--greyd1d1d1);
	content:'Γιατί η';
	position:absolute;
	z-index:-1;
}
#content #touch h3:after{
	font-family: 'OpenSans-Regular', sans-serif!important;
	color:var(--greyd1d1d1);
	content:'μετράει';
	position:absolute;
	white-space:nowrap;
	z-index:-1;
}
#content #touch .innersection{
	display:flex;
	width:100%;
	margin:4em auto;
	padding:2em 0;
}
#content #touch .innersection .txtcontainer{
	display:flex;
	gap:1em;
	flex-direction:column;
}
#content #touch .innersection .txtcontainer h6{
	margin:0;
}
#content #touch .innersection .txtcontainer h6 span{
	display:block;
	margin:.25em 0;
}
#content #touch .innersection .txtcontainer ul{
	list-style-type:none;
	padding:0;
	margin:0;
}
#content #touch .innersection .txtcontainer ul a{
	color:var(--blacklight);
	text-decoration:none;
}
#content #touch .innersection .txtcontainer .info li i{
	color:var(--red);
}
#content #touch .innersection .txtcontainer .social{
	display:flex;
	gap:1em;
}
#content #touch .innersection .txtcontainer .social li a {
	-moz-transition: all .3s linear;
	-webkit-transition: all .3s linear;
	-ms-transition: all .3s linear;
	-o-transition: all .3s linear;
	display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 35px;
    height: 35px;
    background-color: var(--red);
    color: var(--greyf1f1f1);
    border-radius: 50%;
    text-decoration: none;
    transition: background 0.3s;
	text-decoration:none;
	position:relative;
}
#content #touch .innersection .txtcontainer .social li a:hover{
	color:var(--bluebasic);
	background-color:var(--greyf1f1f1);
}
/*shapes*/
#content section .circles{
	display:flex;
	gap:0;
	z-index:4;
}
#content section .circles .halfcircle {
	transform-origin: center; 
}
#content section .circles .halfcircle:last-child {

}
#content section .tothetop{
	position:absolute;
}
#content section .tothetop .halfcircle {
	background-color: var(--blue);
	transform: rotate(90deg); /* Rotate by 90 degrees */
}
#content section .tothetop .halfcircle:last-child {
	background-color: var(--red);
}
#content section .tothetop{
	position:absolute;
}
#content section .tothebottom .halfcircle {
	background-color: var(--orange);
	transform: rotate(-90deg); /* Rotate by 90 degrees */
}
#content section .tothebottom .halfcircle:last-child {
	background-color: var(--yellow);
}
#content section .tothebottom{
	position:absolute;
}
#content section .dropes{
	display:flex;
	gap:.5em;
	z-index:4;
}
#content section .dropetothetop{
	position:absolute;
}
#content section .dropetothetop .drope {
	padding: 0;
	background-color: var(--purple);
	margin: 0 auto;	
	border-radius:0% 100% 100% 100%;
	-webkit-transform: rotate(90deg);
}
#content section .dropetothetop .drope:last-child {
	background-color: var(--yellow);
}
#content section .dropesright{
	position:absolute;
}
#content section .dropesright .drope {
	padding: 0;
	margin: 0 auto;	
	border-radius:0% 100% 100% 100%;
	background-color: var(--orange);
	-webkit-transform: rotate(-90deg);
}
#content section .dropesright .drope:last-child {
	background-color: var(--blue);
}

#content section .triangles{
	position:absolute;
	display:flex;
	gap:.5em;
	z-index:4;
}
#content section .triangles .left {
  aspect-ratio: 1/cos(30deg);
  clip-path: polygon(50% 0,100% 100%,0 100%);
  background-color: var(--blue);
}
#content section .triangles .right {
  aspect-ratio: 1/cos(30deg);
  clip-path: polygon(50% 100%,100% 0,0 0);
  background-color: var(--red);
}
@media all and (min-width: 1400px) {
#content section {
	padding:4em 0 4em 0;
}
/*welcome*/
#content #welcome::before{
	width:40%;
	height:40%;
	top:50%;
	left:0%;
	transform:translateY(-50%);
}
#content #welcome .innersection {
	gap:2em;
	margin:4em auto 1em auto;
	max-width:1300px;
}
#content #welcome .innersection .imgcontainer{
	width:50%;
}
#content #welcome .innersection .txtcontainer {
	padding:2em 4em;
	width:40%;
	font-size:1em;
}
#content #welcome .innersection .txtcontainer span{
	font-size:.8em;
}
#content #welcome .innersection .txtcontainer h3{
	font-size:3em;
}
#content #welcome .innersection .txtcontainer h3:before{
	font-size:.95em;
	top:-40px;
	left:-30px;
}
#content #welcome .innersection .txtcontainer h3:after{
	font-size:.7em;
	bottom:-30px;
	right:-60px;
}
#content #welcome .innersection .txtcontainer .more {
	font-size:1em;
	padding: .75em 1em;
}
/*services*/
#content #services .text{
	font-size:.9em;	
	max-width:1100px;
}
#content #services h3{
	font-size:3.5em;
}
#content #services h3:before{
	font-size:.95em;
	top:-40px;
	left:-30px;
}
#content #services h3:after{
	font-size:.7em;
	bottom:-30px;
	right:-60px;
}
#content #services .innersection{
	margin:4em auto 1em auto;
	max-width:1300px;
}
#content #services .innersection .box{
	width:50%;
}
#content #services .innersection .box .imgcontainer{
	width:50%;
}
#content #services .innersection .box .txtcontainer{
	width:50%;
}
#content #services .innersection .box .txtcontainer h4{
	font-size:1.25em;
}
#content #services .innersection .box .txtcontainer span{
	display: -webkit-box;
	-webkit-line-clamp: 2; 
	-webkit-box-orient: vertical;
	overflow: hidden;
	font-size:.9em;
}
#content #services .innersection .box .txtcontainer .more{
	margin: 2em auto;
	padding:1em 1.25em;
	font-size:.8em;
}
/*faos*/
#content #faos .imgcontainer{
	width:150px;
	height:150px;
}
#content #faos .innersection{
	gap:3em;
	max-width:1300px;
}
#content #faos .innersection .box{
	width:25%;
}
#content #faos .innersection .box i{
	font-size:3em;
}
#content #faos .innersection .box h3{
	margin:1em 0 0 0 ;
	font-size:1.75em;
}
#content #faos .innersection .box span{
	font-size:.8em;
}
#content #faos .innersection .box .more{
	right:20px;
	bottom:-1.5em;
	padding:.75em 1.1em;
}
#content #faos .innersection .box .more i{
	font-size:1.25em;
}
/*books*/
#content #books h3{
	font-size:3.5em;
}
#content #books h3:before{
	font-size:.95em;
	top:-40px;
	left:-30px;
}
#content #books h3:after{
	font-size:.7em;
	bottom:-30px;
	right:-10px;
}
#content #books .innersection{
	max-width:1300px;
}
#content #books .innersection .more {
	font-size:1em;
	padding: .75em 1em;
}
/*demand*/
#content #demand .imgcontainer{
	width:50%;
}
#content #demand .txtcontainer{
	padding:4em 4em;
	width:50%;
}
#content #demand .txtcontainer h5{
	font-size:5em;
}
#content #demand .txtcontainer h6{
	font-size:3em;
}
#content #demand .txtcontainer h6::before{
	font-size:3em;
}
#content #demand .txtcontainer h6::after{
	font-size:3em;
}
#content #demand .txtcontainer .text{
	font-size:1.15em;
}
#content #demand .txtcontainer .more {
	font-size:1em;
	padding: .75em 1em;
}
/*faq*/
#content #faq h3{
	font-size:3.5em;
}
#content #faq h3:before{
	font-size:.95em;
	top:-40px;
	left:-30px;
}
#content #faq h3:after{
	font-size:.7em;
	bottom:-30px;
	right:-10px;
}
#content #faq .innersection{
	max-width:1300px;
}
#content #faq .innersection .more {
	font-size:1em;
	padding: .75em 1em;
}
/*touch*/
#content #touch h3{
	font-size:3.5em;
}
#content #touch h3:before{
	font-size:.95em;
	top:-40px;
	left:-30px;
}
#content #touch h3:after{
	font-size:.7em;
	bottom:-30px;
	right:-10px;
}
#content #touch .innersection{
	max-width:1300px;
}
#content #touch .innersection .txtcontainer{
	width:50%
}
#content #touch .innersection .txtcontainer img{
	width:350px;
}
#content #touch .innersection .txtcontainer h6{
	font-size:1.5em;
}
#content #touch .innersection .txtcontainer h6 span{
	font-size:.75em;
}
#content #touch .innersection .txtcontainer .info li{
	font-size:1em;
	padding:.5em 0;
}
#content #touch .innersection .txtcontainer .info li i{
	font-size:1.25em;
	margin-right:.5em;
}
#content #touch .innersection .txtcontainer .social li a {
	font-size:1em;
}
#content #touch .innersection #gmap_canvas{	
	height:500px;
	width:50%
}
/*shapes*/
#content section .circles .halfcircle {
	width: 200px;
	height: 100px;
	border-radius: 100px 100px 0 0;
}
#content section .circles .halfcircle:last-child {
	margin-left:-6em;
}
#content section .tothetop{
	right:10px;
	top:-50px;
}
#content section .tothebottom{
	left:10px;
	bottom:-50px;
}
#content section .dropetothetop{
	left:10px;
	top:-50px;
}
#content section .dropetothetop .drope {
	width: 150px;
	height: 150px;	
}
#content section .dropesright{
	right:10px;
	top:-50px;
}
#content section .dropesright .drope {	
	width: 150px;
	height: 150px;	
}
#content section .triangles{
	left:10px;
	top:-50px;
}
#content section .triangles .left {
	width: 180px;
}
#content section .triangles .right {
	width: 180px;
	margin-left:-5em;
}
}
@media all and (min-width: 1200px) and (max-width: 1399px) {
#content section {
	padding:4em 0 4em 0;
}
/*welcome*/
#content #welcome::before{
	width:40%;
	height:40%;
	top:50%;
	left:0%;
	transform:translateY(-50%);
}
#content #welcome .innersection {
	gap:2em;
	margin:4em auto 1em auto;
	max-width:1100px;
}
#content #welcome .innersection .imgcontainer{
	width:50%;
}
#content #welcome .innersection .txtcontainer {
	padding:2em 4em;
	width:40%;
	font-size:.9em;
}
#content #welcome .innersection .txtcontainer span{
	font-size:.8em;
}
#content #welcome .innersection .txtcontainer h3{
	font-size:3em;
}
#content #welcome .innersection .txtcontainer h3:before{
	font-size:.95em;
	top:-40px;
	left:-30px;
}
#content #welcome .innersection .txtcontainer h3:after{
	font-size:.7em;
	bottom:-30px;
	right:-60px;
}
#content #welcome .innersection .txtcontainer .more {
	font-size:1em;
	padding: .75em 1em;
}
/*services*/
#content #services .text{
	font-size:.9em;	
	max-width:900px;
}
#content #services h3{
	font-size:3.5em;
}
#content #services h3:before{
	font-size:.95em;
	top:-40px;
	left:-30px;
}
#content #services h3:after{
	font-size:.7em;
	bottom:-30px;
	right:-60px;
}
#content #services .innersection{
	margin:4em auto 1em auto;
	max-width:1100px;
}
#content #services .innersection .box{
	width:50%;
}
#content #services .innersection .box .imgcontainer{
	width:50%;
}
#content #services .innersection .box .txtcontainer{
	width:50%;
}
#content #services .innersection .box .txtcontainer h4{
	font-size:1.1em;
}
#content #services .innersection .box .txtcontainer span{
	display: -webkit-box;
	-webkit-line-clamp: 2; 
	-webkit-box-orient: vertical;
	overflow: hidden;
	font-size:.85em;
}
#content #services .innersection .box .txtcontainer .more{
	margin: 2em auto;
	padding:1em 1.25em;
	font-size:.8em;
}
/*faos*/
#content #faos .imgcontainer{
	width:150px;
	height:150px;
}
#content #faos .innersection{
	gap:2em;
	max-width:1100px;
}
#content #faos .innersection .box{
	width:25%;
}
#content #faos .innersection .box i{
	font-size:3em;
}
#content #faos .innersection .box h3{
	margin:1em 0 0 0 ;
	font-size:1.5em;
}
#content #faos .innersection .box span{
	font-size:.8em;
}
#content #faos .innersection .box .more{
	right:20px;
	bottom:-1.5em;
	padding:.75em 1.1em;
}
#content #faos .innersection .box .more i{
	font-size:1.25em;
}
/*books*/
#content #books h3{
	font-size:3.5em;
}
#content #books h3:before{
	font-size:.95em;
	top:-40px;
	left:-30px;
}
#content #books h3:after{
	font-size:.7em;
	bottom:-30px;
	right:-10px;
}
#content #books .innersection{
	max-width:1100px;
}
#content #books .innersection .more {
	font-size:1em;
	padding: .75em 1em;
}
/*demand*/
#content #demand .imgcontainer{
	width:40%;
}
#content #demand .txtcontainer{
	padding:4em 4em;
	width:60%;
}
#content #demand .txtcontainer h5{
	font-size:4em;
}
#content #demand .txtcontainer h6{
	font-size:2.5em;
}
#content #demand .txtcontainer h6::before{
	font-size:3em;
}
#content #demand .txtcontainer h6::after{
	font-size:3em;
}
#content #demand .txtcontainer .text{
	font-size:1em;
}
#content #demand .txtcontainer .more {
	font-size:1em;
	padding: .75em 1em;
}
/*faq*/
#content #faq h3{
	font-size:3.5em;
}
#content #faq h3:before{
	font-size:.95em;
	top:-40px;
	left:-30px;
}
#content #faq h3:after{
	font-size:.7em;
	bottom:-30px;
	right:-10px;
}
#content #faq .innersection{
	max-width:1100px;
}
#content #faq .innersection .more {
	font-size:1em;
	padding: .75em 1em;
}
/*touch*/
#content #touch h3{
	font-size:3em;
}
#content #touch h3:before{
	font-size:.95em;
	top:-40px;
	left:-30px;
}
#content #touch h3:after{
	font-size:.7em;
	bottom:-30px;
	right:-10px;
}
#content #touch .innersection{
	max-width:1100px;
}
#content #touch .innersection .txtcontainer{
	width:50%
}
#content #touch .innersection .txtcontainer img{
	width:350px;
}
#content #touch .innersection .txtcontainer h6{
	font-size:1.5em;
}
#content #touch .innersection .txtcontainer h6 span{
	font-size:.75em;
}
#content #touch .innersection .txtcontainer .info li{
	font-size:1em;
	padding:.5em 0;
}
#content #touch .innersection .txtcontainer .info li i{
	font-size:1.25em;
	margin-right:.5em;
}
#content #touch .innersection .txtcontainer .social li a {
	font-size:1em;
}
#content #touch .innersection #gmap_canvas{	
	height:500px;
	width:50%
}
/*shapes*/
#content section .circles .halfcircle {
	width: 150px;
	height: 75px;
	border-radius: 75px 75px 0 0;
}
#content section .circles .halfcircle:last-child {
	margin-left:-4em;
}
#content section .tothetop{
	right:10px;
	top:-50px;
}
#content section .tothetop{
	right:10px;
	top:-50px;
}
#content section .tothebottom{
	left:10px;
	bottom:-50px;
}
#content section .dropetothetop{
	left:10px;
	top:-50px;
}
#content section .dropetothetop .drope {
	width: 125px;
	height: 125px;	
}
#content section .dropesright{
	right:10px;
	top:-50px;
}
#content section .dropesright .drope {	
	width: 150px;
	height: 150px;	
}
#content section .triangles{
	left:10px;
	top:-50px;
}
#content section .triangles .left {
	width: 180px;
}
#content section .triangles .right {
	width: 180px;
	margin-left:-5em;
}
}
@media all and (min-width: 1024px) and (max-width: 1199px) {
#content section {
	padding:4em 0 4em 0;
}
/*welcome*/
#content #welcome::before{
	width:40%;
	height:40%;
	top:50%;
	left:0%;
	transform:translateY(-50%);
}
#content #welcome .innersection {
	gap:2em;
	margin:4em auto 1em auto;
	max-width:85%;
}
#content #welcome .innersection .imgcontainer{
	width:50%;
}
#content #welcome .innersection .txtcontainer {
	padding:2em 1em;
	width:45%;
	font-size:.9em;
}
#content #welcome .innersection .txtcontainer span{
	font-size:.8em;
}
#content #welcome .innersection .txtcontainer h3{
	font-size:2.75em;
}
#content #welcome .innersection .txtcontainer h3:before{
	font-size:.9em;
	top:-40px;
	left:-30px;
}
#content #welcome .innersection .txtcontainer h3:after{
	font-size:.6em;
	bottom:-30px;
	right:-40px;
}
#content #welcome .innersection .txtcontainer .more {
	font-size:1em;
	padding: .75em 1em;
}
/*services*/
#content #services .text{
	font-size:.9em;	
	max-width:85%;
}
#content #services h3{
	font-size:3em;
}
#content #services h3:before{
	font-size:.95em;
	top:-40px;
	left:-30px;
}
#content #services h3:after{
	font-size:.7em;
	bottom:-30px;
	right:-60px;
}
#content #services .innersection{
	margin:4em auto 1em auto;
	max-width:95%;
}
#content #services .innersection .box{
	width:50%;
	min-height:275px;
}
#content #services .innersection .box .imgcontainer{
	width:50%;
}
#content #services .innersection .box .txtcontainer{
	width:50%;
}
#content #services .innersection .box .txtcontainer h4{
	font-size:1.1em;
}
#content #services .innersection .box .txtcontainer span{
	display: -webkit-box;
	-webkit-line-clamp: 2; 
	-webkit-box-orient: vertical;
	overflow: hidden;
	font-size:.85em;
}
#content #services .innersection .box .txtcontainer .more{
	margin: 2em auto;
	padding:1em 1.25em;
	font-size:.8em;
}
/*faos*/
#content #faos .imgcontainer{
	width:150px;
	height:150px;
}
#content #faos .innersection{
	gap:1em;
	max-width:900px;
}
#content #faos .innersection .box{
	width:25%;
}
#content #faos .innersection .box i{
	font-size:2.5em;
}
#content #faos .innersection .box h3{
	margin:1em 0 0 0 ;
	font-size:1.25em;
}
#content #faos .innersection .box span{
	font-size:.75em;
}
#content #faos .innersection .box .more{
	right:20px;
	bottom:-1.5em;
	padding:.75em 1.1em;
}
#content #faos .innersection .box .more i{
	font-size:1.25em;
}
/*books*/
#content #books h3{
	font-size:3em;
}
#content #books h3:before{
	font-size:.95em;
	top:-40px;
	left:-30px;
}
#content #books h3:after{
	font-size:.7em;
	bottom:-30px;
	right:-10px;
}
#content #books .innersection{
	max-width:900px;
}
#content #books .innersection .more {
	font-size:1em;
	padding: .75em 1em;
}
/*demand*/
#content #demand .imgcontainer{
	width:40%;
}
#content #demand .txtcontainer{
	padding:4em 4em;
	width:60%;
}
#content #demand .txtcontainer h5{
	font-size:4em;
}
#content #demand .txtcontainer h6{
	font-size:2.5em;
}
#content #demand .txtcontainer h6::before{
	font-size:3em;
}
#content #demand .txtcontainer h6::after{
	font-size:3em;
}
#content #demand .txtcontainer .text{
	font-size:1em;
}
#content #demand .txtcontainer .more {
	font-size:1em;
	padding: .75em 1em;
}
/*faq*/
#content #faq h3{
	font-size:3em;
}
#content #faq h3:before{
	font-size:.95em;
	top:-40px;
	left:-30px;
}
#content #faq h3:after{
	font-size:.7em;
	bottom:-30px;
	right:-10px;
}
#content #faq .innersection{
	max-width:900px;
}
#content #faq .innersection .more {
	font-size:1em;
	padding: .75em 1em;
}
/*touch*/
#content #touch h3{
	font-size:3em;
}
#content #touch h3:before{
	font-size:.95em;
	top:-40px;
	left:-30px;
}
#content #touch h3:after{
	font-size:.7em;
	bottom:-30px;
	right:-10px;
}
#content #touch .innersection{
	max-width:900px;
}
#content #touch .innersection .txtcontainer{
	width:50%
}
#content #touch .innersection .txtcontainer img{
	width:300px;
}
#content #touch .innersection .txtcontainer h6{
	font-size:1.25em;
}
#content #touch .innersection .txtcontainer h6 span{
	font-size:.75em;
}
#content #touch .innersection .txtcontainer .info li{
	font-size:.9em;
	padding:.5em 0;
}
#content #touch .innersection .txtcontainer .info li i{
	font-size:1.25em;
	margin-right:.5em;
}
#content #touch .innersection .txtcontainer .social li a {
	font-size:1em;
}
#content #touch .innersection #gmap_canvas{	
	height:500px;
	width:50%
}
/*shapes*/
#content section .circles .halfcircle {
	width: 150px;
	height: 75px;
	border-radius: 75px 75px 0 0;
}
#content section .circles .halfcircle:last-child {
	margin-left:-4em;
}
#content section .tothetop{
	right:10px;
	top:-50px;
}
#content section .tothetop{
	right:10px;
	top:-50px;
}
#content section .tothebottom{
	left:10px;
	bottom:-50px;
}
#content section .dropetothetop{
	left:10px;
	top:-50px;
}
#content section .dropetothetop .drope {
	width: 125px;
	height: 125px;	
}
#content section .dropesright{
	right:10px;
	top:-50px;
}
#content section .dropesright .drope {	
	width: 150px;
	height: 150px;	
}
#content section .triangles{
	left:10px;
	top:-50px;
}
#content section .triangles .left {
	width: 150px;
}
#content section .triangles .right {
	width: 150px;
	margin-left:-4em;
}
}
@media all and (min-width: 768px) and (max-width: 1023px) {
#content section {
	padding:4em 0 4em 0;
}
/*welcome*/
#content #welcome::before{
	width:40%;
	height:40%;
	top:50%;
	left:0%;
	transform:translateY(-50%);
	display: none;
}
#content #welcome .innersection {
	gap:2em;
	flex-direction:column;
	margin:1em auto 1em auto;
	max-width:80%;
}
#content #welcome .innersection .imgcontainer{
	width:100%;
	order:2;
}
#content #welcome .innersection .txtcontainer {
	padding:2em 4em;
	width:100%;
	font-size:.9em;
	order:1;
}
#content #welcome .innersection .txtcontainer span{
	font-size:.8em;
}
#content #welcome .innersection .txtcontainer h3{
	font-size:3em;
}
#content #welcome .innersection .txtcontainer h3:before{
	font-size:.95em;
	top:-40px;
	left:-30px;
}
#content #welcome .innersection .txtcontainer h3:after{
	font-size:.7em;
	bottom:-30px;
	right:-60px;
}
#content #welcome .innersection .txtcontainer .more {
	font-size:1em;
	padding: .75em 1em;
}
/*services*/
#content #services .text{
	font-size:.85em;	
	max-width:85%;
}
#content #services h3{
	font-size:2.5em;
}
#content #services h3:before{
	font-size:.95em;
	top:-40px;
	left:-30px;
}
#content #services h3:after{
	font-size:.7em;
	bottom:-30px;
	right:-60px;
}
#content #services .innersection{
	margin:4em auto 1em auto;
	flex-direction:column;
	max-width:85%;
}
#content #services .innersection .box{
	width:100%;
	#min-height:275px;
}
#content #services .innersection .box:nth-child(3) .txtcontainer,
#content #services .innersection .box:nth-child(4) .txtcontainer{
	order:2;
}
#content #services .innersection .box:nth-child(3) .imgcontainer,
#content #services .innersection .box:nth-child(4) .imgcontainer{
	order:1;
}
#content #services .innersection .box:nth-child(even) .txtcontainer{
	order:1;
}
#content #services .innersection .box:nth-child(even) .imgcontainer{
	order:2;
}
#content #services .innersection .box .imgcontainer{
	width:100%;
}
#content #services .innersection .box .txtcontainer{
	width:100%;
}
#content #services .innersection .box .txtcontainer h4{
	font-size:1.1em;
}
#content #services .innersection .box .txtcontainer span{
	display: -webkit-box;
	-webkit-line-clamp: 2; 
	-webkit-box-orient: vertical;
	overflow: hidden;
	font-size:.85em;
}
#content #services .innersection .box .txtcontainer .more{
	margin: 2em auto;
	padding:1em 1.25em;
	font-size:.8em;
}
/*faos*/
#content #faos .imgcontainer{
	width:150px;
	height:150px;
}
#content #faos .innersection{
	gap:2em;
	flex-wrap:wrap;
	max-width:85%;
	margin:0 auto;
}
#content #faos .innersection .box{
	width:45%;
}
#content #faos .innersection .box i{
	font-size:3em;
}
#content #faos .innersection .box h3{
	margin:1em 0 0 0 ;
	font-size:1.5em;
}
#content #faos .innersection .box span{
	font-size:.8em;
}
#content #faos .innersection .box .more{
	right:20px;
	bottom:-1.5em;
	padding:.75em 1.1em;
}
#content #faos .innersection .box .more i{
	font-size:1.25em;
}
/*books*/
#content #books h3{
	font-size:3em;
}
#content #books h3:before{
	font-size:.95em;
	top:-40px;
	left:-30px;
}
#content #books h3:after{
	font-size:.7em;
	bottom:-30px;
	right:-10px;
}
#content #books .innersection{
	max-width:85%;
}
#content #books .innersection .more {
	font-size:1em;
	padding: .75em 1em;
}
/*demand*/
#content #demand .imgcontainer{
	display:none;
}
#content #demand .txtcontainer{
	padding:4em 4em;
	width:100%;
}
#content #demand .txtcontainer h5{
	font-size:4em;
}
#content #demand .txtcontainer h6{
	font-size:2.5em;
}
#content #demand .txtcontainer h6::before{
	font-size:3em;
}
#content #demand .txtcontainer h6::after{
	font-size:3em;
}
#content #demand .txtcontainer .text{
	font-size:1em;
}
#content #demand .txtcontainer .more {
	font-size:1em;
	padding: .75em 1em;
}
/*faq*/
#content #faq h3{
	font-size:3em;
}
#content #faq h3:before{
	font-size:.95em;
	top:-40px;
	left:-30px;
}
#content #faq h3:after{
	font-size:.7em;
	bottom:-30px;
	right:-10px;
}
#content #faq .innersection{
	max-width:85%;
	margin:1em auto;
}
#content #faq .innersection .more {
	font-size:1em;
	padding: .75em 1em;
}
/*touch*/
#content #touch h3{
	font-size:2.5em;
}
#content #touch h3:before{
	font-size:.95em;
	top:-40px;
	left:-30px;
}
#content #touch h3:after{
	font-size:.7em;
	bottom:-30px;
	right:-10px;
}
#content #touch .innersection{
	max-width:85%;
	margin:1em auto;
	flex-direction:column;
	gap:2em;
}
#content #touch .innersection .txtcontainer,
#content #touch .innersection #gmap_canvas{
	width:100%!important;
	align-items: center;
}
#content #touch .innersection .txtcontainer img{
	width:300px;
}
#content #touch .innersection .txtcontainer h6{
	font-size:1.25em;
}
#content #touch .innersection .txtcontainer h6 span{
	font-size:.75em;
}
#content #touch .innersection .txtcontainer .info li{
	font-size:.9em;
	padding:.5em 0;
}
#content #touch .innersection .txtcontainer .info li i{
	font-size:1.25em;
	margin-right:.5em;
}
#content #touch .innersection .txtcontainer .social li a {
	font-size:1em;
}
#content #touch .innersection #gmap_canvas{	
	height:500px;
	width:50%
}
/*shapes*/
#content section .circles .halfcircle {
	width: 100px;
	height: 50px;
	border-radius: 50px 50px 0 0;
}
#content section .circles .halfcircle:last-child {
	margin-left:-3em;
}
#content section .tothetop{
	right:10px;
	top:-30px;
}
#content section .tothebottom{
	left:10px;
	bottom:-50px;
}
#content section .dropetothetop{
	left:10px;
	top:-50px;
}
#content section .dropetothetop .drope {
	width: 100px;
	height: 100px;	
}
#content section .dropesright{
	right:10px;
	top:-50px;
}
#content section .dropesright .drope {	
	width: 100px;
	height: 100px;	
}
#content section .triangles{
	left:10px;
	top:-50px;
}
#content section .triangles .left {
	width: 125px;
}
#content section .triangles .right {
	width: 125px;
	margin-left:-4em;
}
}
@media all and (min-width: 600px) and (max-width: 767px) {
#content section {
	padding:4em 0 4em 0;
}
/*welcome*/
#content #welcome::before{
	width:40%;
	height:40%;
	top:50%;
	left:0%;
	transform:translateY(-50%);
	display: none;
}
#content #welcome .innersection {
	gap:2em;
	flex-direction:column;
	margin:1em auto 1em auto;
	max-width:90%;
}
#content #welcome .innersection .imgcontainer{
	width:90%;
	margin:0 auto;
	order:2;
}
#content #welcome .innersection .txtcontainer {
	padding:2em 2em;
	width:100%;
	font-size:.9em;
	order:1;
}
#content #welcome .innersection .txtcontainer span{
	font-size:.8em;
}
#content #welcome .innersection .txtcontainer h3{
	font-size:3em;
}
#content #welcome .innersection .txtcontainer h3:before{
	font-size:.95em;
	top:-40px;
	left:-30px;
}
#content #welcome .innersection .txtcontainer h3:after{
	font-size:.7em;
	bottom:-30px;
	right:-30px;
}
#content #welcome .innersection .txtcontainer .more {
	font-size:1em;
	padding: .75em 1em;
}
/*services*/
#content #services .text{
	font-size:.85em;	
	max-width:85%;
}
#content #services h3{
	font-size:2.5em;
}
#content #services h3:before{
	font-size:.95em;
	top:-40px;
	left:-30px;
}
#content #services h3:after{
	font-size:.7em;
	bottom:-30px;
	right:-60px;
}
#content #services .innersection{
	margin:4em auto 1em auto;
	flex-direction:column;
	max-width:85%;
}
#content #services .innersection .box{
	width:100%;
	#min-height:275px;
}
#content #services .innersection .box:nth-child(3) .txtcontainer,
#content #services .innersection .box:nth-child(4) .txtcontainer{
	order:2;
}
#content #services .innersection .box:nth-child(3) .imgcontainer,
#content #services .innersection .box:nth-child(4) .imgcontainer{
	order:1;
}
#content #services .innersection .box:nth-child(even) .txtcontainer{
	order:1;
}
#content #services .innersection .box:nth-child(even) .imgcontainer{
	order:2;
}
#content #services .innersection .box .imgcontainer{
	width:100%;
}
#content #services .innersection .box .txtcontainer{
	width:100%;
}
#content #services .innersection .box .txtcontainer h4{
	font-size:1.1em;
}
#content #services .innersection .box .txtcontainer span{
	display: -webkit-box;
	-webkit-line-clamp: 2; 
	-webkit-box-orient: vertical;
	overflow: hidden;
	font-size:.85em;
}
#content #services .innersection .box .txtcontainer .more{
	margin: 2em auto;
	padding:1em 1.25em;
	font-size:.8em;
}
/*faos*/
#content #faos .imgcontainer{
	width:150px;
	height:150px;
}
#content #faos .innersection{
	flex-direction:column;
	gap:2em;
	max-width:85%;
	margin:0 auto;
}
#content #faos .innersection .box{
	width:65%;
	margin:auto;
}
#content #faos .innersection .box i{
	font-size:3em;
}
#content #faos .innersection .box h3{
	margin:1em 0 0 0 ;
	font-size:1.5em;
}
#content #faos .innersection .box span{
	font-size:.8em;
}
#content #faos .innersection .box .more{
	right:20px;
	bottom:-1.5em;
	padding:.75em 1.1em;
}
#content #faos .innersection .box .more i{
	font-size:1.25em;
}
/*books*/
#content #books h3{
	font-size:3em;
}
#content #books h3:before{
	font-size:.95em;
	top:-40px;
	left:-30px;
}
#content #books h3:after{
	font-size:.7em;
	bottom:-30px;
	right:-10px;
}
#content #books .innersection{
	max-width:85%;
}
#content #books .innersection .more {
	font-size:1em;
	padding: .75em 1em;
}
/*demand*/
#content #demand .imgcontainer{
	display:none;
}
#content #demand .txtcontainer{
	padding:4em 4em;
	width:100%;
}
#content #demand .txtcontainer h5{
	font-size:3em;
}
#content #demand .txtcontainer h6{
	font-size:1.75em;
}
#content #demand .txtcontainer h6::before{
	font-size:3em;
}
#content #demand .txtcontainer h6::after{
	font-size:3em;
}
#content #demand .txtcontainer .text{
	font-size:1em;
}
#content #demand .txtcontainer .more {
	font-size:1em;
	padding: .75em 1em;
}
/*faq*/
#content #faq h3{
	font-size:3em;
}
#content #faq h3:before{
	font-size:.95em;
	top:-40px;
	left:-30px;
}
#content #faq h3:after{
	font-size:.7em;
	bottom:-30px;
	right:-10px;
}
#content #faq .innersection{
	max-width:85%;
	margin:1em auto;
}
#content #faq .innersection .more {
	font-size:1em;
	padding: .75em 1em;
}
/*touch*/
#content #touch h3{
	font-size:2.25em;
}
#content #touch h3:before{
	font-size:.95em;
	top:-40px;
	left:-30px;
}
#content #touch h3:after{
	font-size:.7em;
	bottom:-30px;
	right:-10px;
}
#content #touch .innersection{
	max-width:85%;
	margin:1em auto;
	flex-direction:column;
	gap:2em;
}
#content #touch .innersection .txtcontainer,
#content #touch .innersection #gmap_canvas{
	width:100%!important;
	align-items: center;
}
#content #touch .innersection .txtcontainer img{
	width:300px;
}
#content #touch .innersection .txtcontainer h6{
	font-size:1.25em;
}
#content #touch .innersection .txtcontainer h6 span{
	font-size:.75em;
}
#content #touch .innersection .txtcontainer .info li{
	font-size:.9em;
	padding:.5em 0;
}
#content #touch .innersection .txtcontainer .info li i{
	font-size:1.25em;
	margin-right:.5em;
}
#content #touch .innersection .txtcontainer .social li a {
	font-size:1em;
}
#content #touch .innersection #gmap_canvas{	
	height:400px;
	width:50%
}
/*shapes*/
#content section .circles .halfcircle {
	width: 100px;
	height: 50px;
	border-radius: 50px 50px 0 0;
}
#content section .circles .halfcircle:last-child {
	margin-left:-3em;
}
#content section .tothetop{
	right:10px;
	top:-30px;
}
#content section .tothebottom{
	left:10px;
	bottom:-50px;
}
#content section .dropetothetop{
	left:10px;
	top:-50px;
}
#content section .dropetothetop .drope {
	width: 80px;
	height: 80px;	
}
#content section .dropesright{
	right:10px;
	top:-50px;
}
#content section .dropesright .drope {	
	width: 80px;
	height: 80px;	
}
#content section .triangles{
	left:10px;
	top:-50px;
}
#content section .triangles .left {
	width: 100px;
}
#content section .triangles .right {
	width: 100px;
	margin-left:-3em;
}
}
@media all and (min-width: 450px) and (max-width: 599px) {
#content section {
	padding:4em 0 4em 0;
}
/*welcome*/
#content #welcome::before{
	width:40%;
	height:40%;
	top:50%;
	left:0%;
	transform:translateY(-50%);
	display: none;
}
#content #welcome .innersection {
	gap:2em;
	flex-direction:column;
	margin:1em auto 1em auto;
	max-width:85%;
}
#content #welcome .innersection .imgcontainer{
	width:90%;
	margin:0 auto;
	order:2;
}
#content #welcome .innersection .txtcontainer {
	padding:2em 2em;
	width:100%;
	font-size:.9em;
	order:1;
}
#content #welcome .innersection .txtcontainer span{
	font-size:.8em;
}
#content #welcome .innersection .txtcontainer h3{
	font-size:2.5em;
}
#content #welcome .innersection .txtcontainer h3:before{
	font-size:.95em;
	top:-40px;
	left:-30px;
}
#content #welcome .innersection .txtcontainer h3:after{
	font-size:.7em;
	bottom:-30px;
	right:-30px;
}
#content #welcome .innersection .txtcontainer .more {
	font-size:1em;
	padding: .75em 1em;
}
/*services*/
#content #services .text{
	font-size:.85em;	
	max-width:85%;
}
#content #services h3{
	font-size:2.25em;
}
#content #services h3:before{
	font-size:.95em;
	top:-40px;
	left:-30px;
}
#content #services h3:after{
	font-size:.7em;
	bottom:-30px;
	right:-60px;
}
#content #services .innersection{
	margin:4em auto 1em auto;
	flex-direction:column;
	max-width:85%;
}
#content #services .innersection .box{
	width:100%;
	flex-direction:column;
	#min-height:275px;
}
#content #services .innersection .box:nth-child(3) .txtcontainer,
#content #services .innersection .box:nth-child(4) .txtcontainer{
	order:2;
}
#content #services .innersection .box:nth-child(3) .imgcontainer,
#content #services .innersection .box:nth-child(4) .imgcontainer{
	order:1;
}
#content #services .innersection .box .txtcontainer{
	order:2;
}
#content #services .innersection .box .imgcontainer{
	order:1;
}
#content #services .innersection .box .imgcontainer{
	width:100%;
	height:250px;
}
#content #services .innersection .box .txtcontainer{
	width:100%;
}
#content #services .innersection .box .txtcontainer h4{
	font-size:1.1em;
}
#content #services .innersection .box .txtcontainer span{
	display: -webkit-box;
	-webkit-line-clamp: 2; 
	-webkit-box-orient: vertical;
	overflow: hidden;
	font-size:.85em;
}
#content #services .innersection .box .txtcontainer .more{
	margin: 2em auto;
	padding:1em 1.25em;
	font-size:.8em;
}
/*faos*/
#content #faos .imgcontainer{
	width:150px;
	height:150px;
}
#content #faos .innersection{
	flex-direction:column;
	gap:2em;
	max-width:85%;
	margin:0 auto;
}
#content #faos .innersection .box{
	width:65%;
	margin:auto;
}
#content #faos .innersection .box i{
	font-size:3em;
}
#content #faos .innersection .box h3{
	margin:1em 0 0 0 ;
	font-size:1.5em;
}
#content #faos .innersection .box span{
	font-size:.8em;
}
#content #faos .innersection .box .more{
	right:20px;
	bottom:-1.5em;
	padding:.75em 1.1em;
}
#content #faos .innersection .box .more i{
	font-size:1.25em;
}
/*books*/
#content #books h3{
	font-size:2.5em;
	margin:1em auto 1em auto;
}
#content #books h3:before{
	font-size:.95em;
	top:-40px;
	left:-30px;
}
#content #books h3:after{
	font-size:.7em;
	bottom:-30px;
	right:-10px;
}
#content #books .innersection{
	max-width:85%;
	margin:1em auto 4em auto;
}
#content #books .innersection .more {
	font-size:1em;
	padding: .75em 1em;
}
/*demand*/
#content #demand .imgcontainer{
	display:none;
}
#content #demand .txtcontainer{
	padding:4em 4em;
	width:100%;
}
#content #demand .txtcontainer h5{
	font-size:2.5em;
}
#content #demand .txtcontainer h6{
	font-size:1.5em;
}
#content #demand .txtcontainer h6::before{
	font-size:3em;
}
#content #demand .txtcontainer h6::after{
	font-size:3em;
}
#content #demand .txtcontainer .text{
	font-size:1em;
}
#content #demand .txtcontainer .more {
	font-size:1em;
	padding: .75em 1em;
}
/*faq*/
#content #faq h3{
	font-size:2.5em;
}
#content #faq h3:before{
	font-size:.95em;
	top:-40px;
	left:-30px;
}
#content #faq h3:after{
	font-size:.7em;
	bottom:-30px;
	right:-10px;
}
#content #faq .innersection{
	max-width:85%;
	margin:0 auto;
}
#content #faq .innersection .more {
	font-size:1em;
	padding: .75em 1em;
}
/*touch*/
#content #touch h3{
	font-size:2.25em;
}
#content #touch h3:before{
	font-size:.95em;
	top:-20px;
	left:-30px;
}
#content #touch h3:after{
	font-size:.7em;
	bottom:-20px;
	right:-10px;
}
#content #touch .innersection{
	max-width:85%;
	margin:1em auto;
	flex-direction:column;
	gap:2em;
}
#content #touch .innersection .txtcontainer,
#content #touch .innersection #gmap_canvas{
	width:100%!important;
	align-items: center;
}
#content #touch .innersection .txtcontainer img{
	width:250px;
}
#content #touch .innersection .txtcontainer h6{
	font-size:1.25em;
}
#content #touch .innersection .txtcontainer h6 span{
	font-size:.75em;
}
#content #touch .innersection .txtcontainer .info li{
	font-size:.85em;
	padding:.5em 0;
}
#content #touch .innersection .txtcontainer .info li i{
	font-size:1.25em;
	margin-right:.5em;
}
#content #touch .innersection .txtcontainer .social li a {
	font-size:1em;
}
#content #touch .innersection #gmap_canvas{	
	height:400px;
	width:50%
}
/*shapes*/
#content section .circles .halfcircle {
	width: 100px;
	height: 50px;
	border-radius: 50px 50px 0 0;
}
#content section .circles .halfcircle:last-child {
	margin-left:-3em;
}
#content section .tothetop{
	right:10px;
	top:-30px;
}
#content section .tothebottom{
	left:10px;
	bottom:-30px;
}
#content section .dropetothetop{
	left:10px;
	top:-30px;
}
#content section .dropetothetop .drope {
	width: 70px;
	height: 70px;	
}
#content section .dropesright{
	right:10px;
	top:-50px;
}
#content section .dropesright .drope {	
	width: 70px;
	height: 70px;	
}
#content section .triangles{
	left:10px;
	top:-50px;
}
#content section .triangles .left {
	width: 80px;
}
#content section .triangles .right {
	width: 80px;
	margin-left:-2.5em;
}
}
@media all and (max-width: 449px) {
#content section {
	padding:4em 0 4em 0;
}
/*welcome*/
#content #welcome {
	padding:1em 0 4em 0;
}
#content #welcome::before{
	width:40%;
	height:40%;
	top:50%;
	left:0%;
	transform:translateY(-50%);
	display: none;
}
#content #welcome .innersection {
	gap:2em;
	flex-direction:column;
	margin:1em auto 1em auto;
	max-width:85%;
}
#content #welcome .innersection .imgcontainer{
	width:90%;
	margin:0 auto;
	order:2;
}
#content #welcome .innersection .txtcontainer {
	padding:2em 1em;
	width:100%;
	font-size:.9em;
	order:1;
}
#content #welcome .innersection .txtcontainer span{
	font-size:.8em;
}
#content #welcome .innersection .txtcontainer h3{
	font-size:2em;
	
}
#content #welcome .innersection .txtcontainer h3:before{
	font-size:.95em;
	top:-30px;
	left:-10px;
}
#content #welcome .innersection .txtcontainer h3:after{
	font-size:.7em;
	bottom:-20px;
	right:-20px;
}
#content #welcome .innersection .txtcontainer .more {
	font-size:1em;
	padding: .75em 1em;
}
/*services*/
#content #services .text{
	font-size:.8em;	
	max-width:85%;
}
#content #services h3{
	font-size:2em;
}
#content #services h3:before{
	font-size:.95em;
	top:-40px;
	left:-30px;
}
#content #services h3:after{
	font-size:.7em;
	bottom:-30px;
	right:-60px;
}
#content #services .innersection{
	margin:4em auto 1em auto;
	flex-direction:column;
	max-width:85%;
}
#content #services .innersection .box{
	width:100%;
	flex-direction:column;
	#min-height:275px;
}
#content #services .innersection .box:nth-child(3) .txtcontainer,
#content #services .innersection .box:nth-child(4) .txtcontainer{
	order:2;
}
#content #services .innersection .box:nth-child(3) .imgcontainer,
#content #services .innersection .box:nth-child(4) .imgcontainer{
	order:1;
}
#content #services .innersection .box .txtcontainer{
	order:2;
}
#content #services .innersection .box .imgcontainer{
	order:1;
}
#content #services .innersection .box .imgcontainer{
	width:100%;
	height:250px;
}
#content #services .innersection .box .txtcontainer{
	width:100%;
}
#content #services .innersection .box .txtcontainer h4{
	font-size:1.1em;
}
#content #services .innersection .box .txtcontainer span{
	display: -webkit-box;
	-webkit-line-clamp: 2; 
	-webkit-box-orient: vertical;
	overflow: hidden;
	font-size:.85em;
}
#content #services .innersection .box .txtcontainer .more{
	margin: 2em auto;
	padding:1em 1.25em;
	font-size:.8em;
}
/*faos*/
#content #faos .imgcontainer{
	width:150px;
	height:150px;
}
#content #faos .innersection{
	flex-direction:column;
	gap:2em;
	max-width:85%;
	margin:0 auto;
}
#content #faos .innersection .box{
	width:100%;
	margin:auto;
}
#content #faos .innersection .box i{
	font-size:3em;
}
#content #faos .innersection .box h3{
	margin:1em 0 0 0 ;
	font-size:1.5em;
}
#content #faos .innersection .box span{
	font-size:.8em;
}
#content #faos .innersection .box .more{
	right:20px;
	bottom:-1.5em;
	padding:.75em 1.1em;
}
#content #faos .innersection .box .more i{
	font-size:1.25em;
}
/*books*/
#content #books h3{
	font-size:2em;
	margin:1em auto 0 auto;
}
#content #books h3:before{
	font-size:.95em;
	top:-40px;
	left:-30px;
}
#content #books h3:after{
	font-size:.7em;
	bottom:-30px;
	right:-10px;
}
#content #books .innersection{
	max-width:85%;
	margin:0 auto 4em auto;
}
#content #books .innersection .more {
	font-size:1em;
	padding: .75em 1em;
}
/*demand*/
#content #demand .imgcontainer{
	display:none;
}
#content #demand .txtcontainer{
	padding:4em 4em;
	width:100%;
}
#content #demand .txtcontainer h5{
	font-size:2em;
}
#content #demand .txtcontainer h6{
	font-size:1.25em;
}
#content #demand .txtcontainer h6::before{
	font-size:3em;
}
#content #demand .txtcontainer h6::after{
	font-size:3em;
}
#content #demand .txtcontainer .text{
	font-size:.85em;
}
#content #demand .txtcontainer .more {
	font-size:1em;
	padding: .75em 1em;
}
/*faq*/
#content #faq h3{
	font-size:2em;
}
#content #faq h3:before{
	font-size:.95em;
	top:-40px;
	left:-30px;
}
#content #faq h3:after{
	font-size:.7em;
	bottom:-30px;
	right:-10px;
}
#content #faq .innersection{
	max-width:85%;
	margin:0 auto;
}
#content #faq .innersection .more {
	font-size:1em;
	padding: .75em 1em;
}
/*touch*/
#content #touch h3{
	font-size:2.25em;
}
#content #touch h3:before{
	font-size:.95em;
	top:-20px;
	left:-30px;
}
#content #touch h3:after{
	font-size:.7em;
	bottom:-20px;
	right:-10px;
}
#content #touch .innersection{
	max-width:85%;
	margin:1em auto;
	flex-direction:column;
	gap:2em;
}
#content #touch .innersection .txtcontainer,
#content #touch .innersection #gmap_canvas{
	width:100%!important;
	align-items: center;
}
#content #touch .innersection .txtcontainer img{
	width:200px;
}
#content #touch .innersection .txtcontainer h6{
	font-size:1.25em;
}
#content #touch .innersection .txtcontainer h6 span{
	font-size:.75em;
}
#content #touch .innersection .txtcontainer .info li{
	font-size:.85em;
	padding:.5em 0;
}
#content #touch .innersection .txtcontainer .info li i{
	font-size:1.25em;
	margin-right:.5em;
}
#content #touch .innersection .txtcontainer .social li a {
	font-size:1em;
}
#content #touch .innersection #gmap_canvas{	
	height:400px;
	width:50%
}
/*shapes*/
#content section .circles .halfcircle {
	width: 100px;
	height: 50px;
	border-radius: 50px 50px 0 0;
}
#content section .circles .halfcircle:last-child {
	margin-left:-3em;
}
#content section .tothetop{
	right:10px;
	top:-30px;
}
#content section .tothebottom{
	left:10px;
	bottom:-30px;
}
#content section .dropetothetop{
	left:10px;
	top:-30px;
}
#content section .dropetothetop .drope {
	width: 50px;
	height: 50px;	
}
#content section .dropesright{
	right:10px;
	top:-30px;
}
#content section .dropesright .drope {	
	width: 50px;
	height: 50px;	
}
#content section .triangles{
	left:10px;
	top:-50px;
}
#content section .triangles .left {
	width: 80px;
}
#content section .triangles .right {
	width: 80px;
	margin-left:-2.5em;
}
}