/* CSS Document */
/* CSS Document */

@-webkit-keyframes rotate-scale-down-hor {
  0% {
    -webkit-transform: scale(1) rotateX(0);
            transform: scale(1) rotateX(0);
  }
  50% {
    -webkit-transform: scale(0.5) rotateX(-180deg);
            transform: scale(0.5) rotateX(-180deg);
  }
  100% {
    -webkit-transform: scale(1) rotateX(-360deg);
            transform: scale(1) rotateX(-360deg);
  }
}
@keyframes rotate-scale-down-hor {
  0% {
    -webkit-transform: scale(1) rotateX(0);
            transform: scale(1) rotateX(0);
  }
  50% {
    -webkit-transform: scale(0.5) rotateX(-180deg);
            transform: scale(0.5) rotateX(-180deg);
  }
  100% {
    -webkit-transform: scale(1) rotateX(-360deg);
            transform: scale(1) rotateX(-360deg);
  }
}

@-webkit-keyframes fade {
  from {opacity: .4}
  to {opacity: 1}
}

@keyframes fade {
  from {opacity: .4}
  to {opacity: 1}
}

@font-face {
	font-family: 'AnonymousPro-Regular';
	src: url("../font/AnonymousPro-Regular.ttf");
}

*{
	margin: 0px;
	padding: 0px;
	
	-webkit-transition: all 0.25s ease-in-out;
  	-moz-transition: all 0.25s ease-in-out;
  	-ms-transition: all 0.25s ease-in-out;
  	-o-transition: all 0.25s ease-in-out;
  	transition: all 0.25s ease-in-out;
}
#header{
	clear:both;
  	overflow:auto;
}

#main-logo{
	float: left;
	margin-top: 10px;
	margin-bottom: 10px;
	margin-left:30px;
}

#main-logo:hover {
	filter: alpha(opacity=70);
  	opacity: 0.7;
}

.rotate-scale-down-hor {
	-webkit-animation: rotate-scale-down-hor 0.6s linear both;
	        animation: rotate-scale-down-hor 0.6s linear both;
}

#navigation{
	float:right;
	width: 100%;
	text-align: right;
	padding-right: 30px;
	background-color: #202020;
}

#navigation a {
	display: inline-block;
	text-decoration: none;
	color: #fff;
	font-family: Tahoma, Verdana, Segoe, sans-serif;
	font-size: 12px;
	padding-left: 15px;
	padding-right: 15px;
	line-height: 80px;
	height: 60px;
}

#navigation a:hover {
	color: #c84b00;	
}

#navigation a.home {
	background-image: url("../images/navi-icon/home.png");
	background-repeat: no-repeat;
	background-position: 50% 15px;
}

#navigation a:hover.home {
	background-image: url("../images/navi-icon/home_hover.png");
}

#navigation a.services {
	background-image: url("../images/navi-icon/services.png");
	background-repeat: no-repeat;
	background-position: 50% 15px;
}

#navigation a:hover.services {
	background-image: url("../images/navi-icon/services_hover.png");
}

#navigation a.palmer {
	background-image: url("../images/navi-icon/palmer.png");
	background-repeat: no-repeat;
	background-position: 50% 15px;
}

#navigation a:hover.palmer {
	background-image: url("../images/navi-icon/palmer_hover.png");
}

#navigation a.contact {
	background-image: url("../images/navi-icon/contact.png");
	background-repeat: no-repeat;
	background-position: 50% 15px;
}

#navigation a:hover.contact {
	background-image: url("../images/navi-icon/contact_hover.png");
}

#navigation a.about {
	background-image: url("../images/navi-icon/about.png");
	background-repeat: no-repeat;
	background-position: 50% 15px;
}

#navigation a:hover.about {
	background-image: url("../images/navi-icon/about_hover.png");
}

#check-domain{
	float: right;
	margin-top: 30px;
	margin-right: 30px;
}

#check-domain span{
	color: #777;
	font-size: 20px;
	padding-right: 3px;
}

input[type=text] {
	color: #777;
	font-size: 14px;
	padding: 10px;
}

input[type=text]:focus {
	outline: none;
}

input[type=submit] {
	display: inline;
	background-color: #d14f00;
	text-decoration: none;
	padding: 10px 20px 10px 20px;
	border-radius: 10px;
	color: white;
	font-size: 13px;
	outline: none;
	border: none;
	margin-left: 25px;
}

input[type=submit]:hover{
	background-color: #000;
}

select {
	color: #777;
	font-size: 14px;
	padding: 10px;
}

select:focus{
    border-color: gray;
    outline:none;
}

.slideshow-container {
  	outline: none;
}

.mySlides {
  display: none;
}

.mySlides img {
	object-fit: cover; 
	 
	width:100%; 
	height: 400px
}

a.round-button {
	background-color: #d14f00;
	text-decoration: none;
	padding: 10px 20px 10px 20px;
	border-radius: 25px;
	color: white;
	display: inline-block;
	font-size: 13px;
	margin-left: 100px;
	margin-top: 20px;
}

a.round-button:hover {
	background-color: #000;
}

.prev, .next {
 	cursor: pointer;
 	position: absolute;
	top: 50%;
  	width: auto;
  	margin-top: -22px;
  	padding: 16px;
  	color: white;
  	font-weight: bold;
  	font-size: 18px;
  	transition: 0.6s ease;
  	border-radius: 0 3px 3px 0;
  	user-select: none; 
}

.next {
  	right: 0; 
  	border-radius: 3px 0 0 3px;
}

.prev:hover, .next:hover {
  	background-color: rgba(0,0,0,0.8);
}

.mySlides .text {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	left: 100px;
	max-width: 500px;
  	color: rgba(255,255,255, 0.95);
  	font-size: 15px;
	font-family: Tahoma, Verdana, Segoe, sans-serif;
	text-align: justify;
	text-shadow: 0 0 3px rgba(0,0,0, 0.25);
}

.mySlides .text .title {
	font-size: 20px;
	padding-bottom: 10px;
}

.mySlides .text ul {
	padding-top: 10px;
	font-size: 12.5px;
}

.mySlides .text ul li {
	padding-top: 1px;
	padding-bottom: 1px;
}

.fade {
  	-webkit-animation-name: fade;
  	-webkit-animation-duration: 1.5s;
  	animation-name: fade;
  	animation-duration: 1.5s;
}

.horizontal-line-orange {
	display: block;
	background-color: #c84b00;
	height: 1px;
}

#info-bar {
	text-align: center;
	background-color: #202020;
	line-height: 24px;
	color: white;
	font-size: 12px;
	padding-top: 25px;
	padding-bottom: 25px;
	font-family: Tahoma, Verdana, Segoe, sans-serif;
	margin-top: -4px;
	
}

#info-bar .info-box {
	display: inline-block;
	margin-left: 10px;
	margin-right: 10px;
}

#info-bar .info-box:hover {
	cursor: pointer;
	text-decoration: underline;
}

#info-bar .info-box img{
	float: left;
	padding-right: 5px;
}

#main-content {
	display: block;
	width: 1000px;
	margin-left: auto;
	margin-right: auto;
	padding-top: 25px;
	padding-bottom: 25px;
	font-size: 14px;
	font-family: Tahoma, Verdana, Segoe, sans-serif;
	color: #262626;
}

#main-content a{
	text-decoration: none;
	color: #FF6B00;
}

#main-content a:hover{
	text-decoration: underline
}

.col1 {
  	float: left;
	display: inline-block;
	width: 250px;
  	padding: 10px;
}

.col2 {
	display: inline-block;
	width: 250px;
  	padding: 10px;
}

.col3 {
	float: right;
	display: inline-block;
	width: 250px;
  	padding: 10px;
}
.col3 ul{
	text-align: left;
	margin-left: 40px;
}

.row {
	display: block;
  	text-align: center;
	min-height: 400px;
}

.row p{
	padding-top: 15px;
	padding-bottom: 15px;
}
.row img {
	display: block;
	margin-left: auto;
	margin-right: auto;
	padding-bottom: 10px;
}

#footer {
	display: block;
	background-color: #202020;
	color: white;
	font-size: 12px;
	font-family: Tahoma, Verdana, Segoe, sans-serif;
	text-align: center;
	margin-top: 50px;
}

#footer span{
	display: block;
	padding-top: 20px;
}

#footer img{
	margin-top: 10px;
	margin-bottom: 10px;
}

.p{
	margin-top: 10px;
	margin-bottom: 10px;
}

.sidenav {
	width: 200px;
	padding: 8px 0;
	float:left;
}

.sidenav a {
	padding: 6px 8px 6px 16px;
	text-decoration: none;
	font-size: 14px;
	color: #2196F3;
	display: block;
}

.sidenav a:hover {
	color: #064579;
}

.main {
	margin-left: 230px; /* Same width as the sidebar + left position in px */
	font-size: 28px; /* Increased text to enable scrolling */
	padding: 0px 10px;
	text-align: center;
}

.card {
	width: 200px;
	text-align: center;
	display: inline-block;
}

.price {
	color: grey;
	font-size: 22px;
	padding-top: 10px;
	padding-bottom: 10px;
}

.card a {
	display: block;
	background-color:rgba(0, 0, 0, 1.0);
	padding-top: 5px;
	padding-bottom: 5px;
	color: white !important;
	text-align: center;
	width: 100%;
	font-size: 16px;
	text-decoration: none !important;
}

.card a:hover {
	background-color:rgba(0, 0, 0, 0.7);
}

.product-image{
	float: left;
}

.product-desc{
	min-height: 500px;
	text-align: left;
}

.product-desc title{
	font-size: 16px;
}

.product-desc .pricep{
	font-size: 16px;
	color: #004c97;
	padding-top: 10px;
}

.product-desc .desc{
	font-size: 16px;
	padding-top: 10px;
	color: #777777;
	line-height: 1.8em;
	font-family: 'Roboto',Helvetica,Arial,Lucida,sans-serif;
}

.product-info {
	width: 100%;
	overflow: auto;
	font-size: 16px;
	text-align: justify;
}

ul.a {list-style-type: circle;}

.product-info p{
	margin-top: 20px;
	margin-bottom: 20px;
}

