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

/*RESET*/
html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, block quote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, font, ing, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li, field set, form, label, legend, table, caption, tbody, toot, thead, tr, th, td {margin:0; padding:0; border:0; outline:0; font-size;100%; vertical-align:baseline; background:transparent;} body {line-height:1;} ol, ul {list-style:none;} block quote, q {quotes:none;} blockquote:before, block quote:after, q:before, q:after {content:’ ‘; content:none;} :focus {outline:0;} ins {text-decoration:none;} del {text-decoration:line-through;} table {border-collapse:collapse; border-spacing:0;}

* {
	box-sizing: border-box;
}

body {
	font-family: 'Open SanS', sans-serif;
	width: 100%;
	margin: 0;
	background-color: #E4D2AA;
}

header {
	margin-top: 30px;
	width: 100%;
}

.logo {
	margin: 0 auto;
	width: 60%;
	display: block;
}

.logo img {
	width: 330px;
	height: 130px;
	background:url("images/logo3_UTerritory.png") no-repeat center;
}	

#tagline {
	margin-top: 150px;
}

img {
	max-width:100%;
	height:auto;
}

hr {
	display: block;
	width:40%;
	margin: 0 auto;
	border-color: #999;
}

h1 {
	font-family: 'Fascinate Inline', cursive;
	font-size: 50px;
	font-weight: 400;
	color:#0B89D7;
	letter-spacing: 1px;
	line-height:50px;
}

h2 {
	font-family: 'Open Sans', sans-serif;
	font-size: 35px;
	font-weight: 400;
	color:#0B89D7;
	letter-spacing: 1px;
	line-height: 60px;
}

h2.clear {
	clear: both;
}

h3 {
	font-family: "Open Sans", sans-serif;
	font-size: 25px;
	font-weight: 400;
	color:#000;
	letter-spacing: 1px;
	margin: 20px 0;
}

h5 {
	font-family: 'Open Sans', sans-serif;
	font-size: 35px;
	font-weight: 400;
	color:#0B89D7;
	letter-spacing: 1px;
	line-height: 60px;
}

p1 {
	font-family: 'Open Sans', sans-serif;
	font-size: 24px;
	color:#2F2C2C;
	letter-spacing: 1px;
	line-height: 50px;
}

p2 {
	font-family: 'Open Sans', sans-serif;
	font-size: 20px;
	color: #666;
	letter-spacing: 1px;
	line-height: 30px;
}

a:link {color:#FFF; text-decoration:none;}
a:hover {opacity: 0.7;}

.menubar {
	width:100%;
	padding-top: 30px;
	padding-bottom: 5px;
	position: relative;
}

nav {
	width: 80%;
	margin: 0 auto;
}

nav ul {
	list-style: none;
	display: table;
	margin:0 auto;
	padding: 0;
	overflow: hidden;	
}

nav ul li {
	float: left;
	list-style: none;
}

nav ul li:last-child {
	padding-right: 0px;
}

nav ul li a {
	color: #201E1E;
	font-size: 18px;
	letter-spacing: 2px;
	padding: 10px 10px;
	display: inline-block;
	transition: all 0.5s ease 0s;
	text-decoration: none;
	font-weight:400;
	list-style: none;
}

nav ul li a:hover {
	background-color: #65B86B;
	color: #FFF;
	transition: all 0.5s ease 0s;
}

nav a:link { color:#262424;}
nav a:active { color:#FFF;}

.toggle-menu ul {
	display: table;
	align: center;
	width: 35px;
	margin: 10px;
}

.toggle-menu ul li {
	width: 100%;
	height: 3px;
	color: #FFFFFF;
	background-color:#575757;
	margin-bottom: 4px;
}

.toggle-menu ul li:last-child {
	margin-bottom: 0px;
}

input[type=checkbox], label {
	display: none;
}

/* Dropdown Menu */

li a, .dropbtn {
	display: inline-blcok;
	color: #CCC;
	text-align: center;
	padding: 10px 10px;
	text-decoration: none;
}

li a:hover, .dropdown:hover .dropbtn {
	background-color: #65B86B;
}

li.dropdown {
	display: inline-block;
}

.dropdown-content {
	display: none;
	position: absolute;
	background-color: #65B86B; 
	min-width: 160px;
	box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
	z-index: 1;
}

.dropdown-content a {
	color: black;
	padding: 10px 10px;
	text-decoration: none;
	display: block;
	text-align: left;
}

.dropdown-content a:hover {background-color: #65B86B;}

.dropdown:hover .dropdown-content {
	display: block;
}

#myVideo { 
	width: 100%;
	height:auto;
	filter: brightness(60%);
}

#myVideo2 { 
	padding: 0 30px;
	width: 50%;
	height:auto;
	filter: brightness(60%);
}

. video-container {
	width: 100%;
	height: auto;
}

.heading {
	position: relative;
	top: 30px;
	left: 10px;
	font-family: 'Fascinate Inline', cursive;
	font-size: 50px;
	font-weight: 400;
	color:#0B89D7;
	letter-spacing: 1px;
	line-height:50px;
	-webkit-animation: mymove-heading 2s 1;
  animation: mymove-heading 2s 1;
	-webkit-animation-timing-function: ease-out;
	animation-timing-function: ease-out;
	animation-fill-mode:forwards;
}

@-webkit-keyframes mymove-heading {
  from {left: 0px;}
  to {left: 38px;}
}

@keyframes mymove-heading {
  from {left: 0px;}
  to {left: 38px;}
}

.grid-container {
	display: grid;
	grid-template-columns: auto auto auto;
	gap: 10px;
	background-color: transparent;
	padding: 10px;
}

.grid-container > div {
	background-color: #FFFFFF;
	text-align: center;
	padding: 20px 0;
	font-size: 20px;
}

.grid-container img {
	box-shadow: 0 3px 6px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
}

.button2 {
	background-color: #439C04;
	color: white;
	font-size:50px;
	width: 100px;
	height: 100px;
	padding: 8px 24px;
	border-radius:50%;
	-webkit-animation-name: U; 
  -webkit-animation-duration: 6s; 
  animation-name: U;
  animation-duration: 4s;
	animation-iteration-count: infinite;
}

@-webkit-keyframes U {
  from {background-color: green;}
  to {background-color: #0861c8;}
}

@keyframes U {
  from {background-color: green;}
  to {background-color: #0861c8;}
}

#BacktoTop {
	display: none;
	position: fixed;
	bottom: 30px;
	right: 30px;
	z-index: 99;
	cursor: pointer;	
}

#BacktoTop:hover {opacity: 0.5;}

footer {
	padding: 30px 0px 15px 0px;
	margin: 0 auto;
	text-align: center;
	width: 100%;
	color: #FFF;
	background-color: #5E5959;
}

.copyright {
	font-family: Verdana, Geneva, sans-serif;
	font-size: 11px;
	letter-spacing: 0.5px;
	color: #FFF;
}

.content {
	position: absolute;
	top: 0;
	bottom: 0;	 
	width: 100%;	
}

.main {
	width: 60%;
	margin: 0 auto;
}

.video {
	width: 95%;
	margin: 0 auto;
}
	
.portfolio {
	width: 100%;
	background:url("images/treebackground.png") no-repeat fixed;
	background-size: cover;	
}

.portfolio2 {
	width: 80%;
	margin: 0 auto;
	background: #ffffff;
	padding: 50px 60px;
}

.video1 {
	width: 80%;
	margin: 0 auto;
	background: #ffffff;
	padding: 50px 60px;
}

.about {
	width: 90%;
	height: auto;
	background: url("images/imac_1.png") right top no-repeat, url("images/imac_2.png") left center no-repeat, url("images/MacbookPro_1.png") bottom center no-repeat;
	background-size: 400px, 400px, 400px, auto;
	margin: 0 auto;
}

.about2 {
	width: 80%;
	margin: 0 auto;
}

.quotation {
	text-align: center;	
	width: 100%;
	height:auto;
	font-size:30px;
	letter-spacing: 1px;
	line-height:50px;
}

/* Gallery */

div.gallery {
    border: 0px solid #ccc;
}

div.gallery:hover {
    border: 0px solid #777;
	opacity: 0.9;
}

div.gallery img {
    width: 100%;
    height: auto;
	box-shadow:0 3px 6px 0 #999;
}

div.gallery2 img {
    width: 100%;
    height: auto;
}

div.desc {
    padding: 15px;
    text-align: center;
}

.responsive {
    padding: 0 30px;
	float: left;
    width: 33.33333%;
}

.responsive2 {
    padding: 0 15px;
	float: left;
    width:50%;
}

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

#feature {
	width: 100%;
	padding: 0 80px;
}

.button {
	display: inline-block;
	border-radius: 4px;
	background-color:#5E5959;
	border: none;
	color: #FFF;
	text-align: center;
	font-size: 18px;
	letter-spacing: 1px;
	width: 240px;
	padding: 15px;
	transition: all 0.5s;
	curson: pointer;
	margin: 20px;	
}

.button span {
	cursor: pointer;
	display: inline-block;
	position: relative;
	transition: 0.5s;
}

.button span:after {
	content: '\00bb';
	position: absolute;
	opacity: 0;
	top: 0;
	right: -10px;
	transition: 0.5s;
}

.button:hover span {
	padding-right: 15px;
	color: #9C3;
}

.button:hover span:after {
	opacity: 1;
	right: 0;
}

.button a:link {color:#FFF;}
.button a:active {color:#9C3;}
.button a:visited {color:#FFF;}

@media only screen and (max-width: 980px) {
input[type=checkbox] {position: absolute; top: -9999px; left: -9999px; background:none;}
input[type=checkbox]:fous{background:none;}
label { padding:8px 0px; display:inline-block; cursor:pointer; }
input[type=checkbox]:checked ~ nav {display:block;}

nav{display:none; position:absolute; width: 50%; left:0px; top:0px; background-color:#0B89D7; padding:30px; z-index:99;}
nav ul{width:auto;}
nav ul li{float:none; padding:0px; width:100%; display:table;}
nav ul li a{color:#FFF; font-size:15px; padding:10px 20px; display:block; border-bottom: 1px solid rgba(225,225,225,0.1);}

	hr {display: none;}
	
			#tagline {
	margin-top: 0;
}
	
.logo {
	margin: 0 auto;
	width: 60%;
	display: block;
}

.logo img {
	width: 330px;
	height: 130px;
	background:url("images/logo3_UTerritory.png") no-repeat center;
}	

	h2 {
	font-size: 30px;
	font-weight: 400;
	letter-spacing: 0px;
	line-height: 45px;
}

			h5 {
	font-size: 30px;
	line-height: 50px;
}
	
			p1 {
	font-size: 20px;
	line-height: 35px;
}
	
	.video1 {
	width: 95%;
	padding: 10px;
}
	
	.video2 {
	width: 100%;
	margin: 0 auto;
}
	
.heading {
	left: 0;
	font-size: 35px;
}
	
@-webkit-keyframes mymove-heading {
  from {left: 0px;}
  to {left: 10px;}
}

@keyframes mymove-heading {
  from {left: 0px;}
  to {left: 10px;}
}

		.button2 {
	font-size:50px;
	width: 80px;
	height: 80px;
}
			
}

@media only screen and (max-width: 568px) {
nav a:link { color:#FFF;}

.menubar {
	width: 100%;
	align: center;
	padding-top: 50px;
}
	
	h2 {
	font-size: 30px;
	font-weight: 400;
	letter-spacing: 0px;
	line-height: 45px;
}

		h5 {
	font-size: 30px;
	line-height: 50px;
}
	
		p1 {
	font-size: 20px;
	line-height: 35px;
}
	
	.about2 {
		width: 100%;
	}
		
hr {
	display: none;
}

#feature {
	padding: 0 5px;
}

.responsive {
	width:  100%;
	padding: 10px 5px;
	}
	
	.responsive2 {
	width:  100%;
	padding: 10px 5px;
}

.logo {
	margin: 0 auto;
	width: 60%;
	display: block;
}

.logo img {
	width: 330px;
	height: 130px;
	background:url("images/logo3_UTerritory.png") no-repeat center;
}	

		#tagline {
	margin-top: 0;
}

.main {
	width: 95%;
	margin: 0 auto;
}
	
.video1 {
	width: 95%;
	padding: 10px;
}
	
	.video2 {
	width: 100%;
	margin: 0 auto;
}
	
	.heading {
	left: 0;
	font-size: 35px;
}
	
	@-webkit-keyframes mymove-heading {
  from {left: 0px;}
  to {left: 10px;}
}

@keyframes mymove-heading {
  from {left: 0px;}
  to {left: 10px;}
}
	
	.button2 {
	font-size:50px;
	width: 80px;
	height: 80px;
}
		#myVideo { 
	width: 100%;
	height: auto;
}
	
.video-container {
	position: relative;
	padding-bottom: 56.25%;
	padding-top: 30px;
	height: 0;
	overflow: hidden;
}

.video-container iframe,
.video-container object,
.video-container embed {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}
	
.portfolio2 {
	width: 95%;
	padding: 10px;
}

}

@media only screen and (max-width: 480px) {
nav a:link { color:#FFF;}

.menubar {
	width: 100%;
	align: center;
	padding-top: 50px;	
}
	
	h2 {
	font-size: 30px;
	font-weight: 400;
	letter-spacing: 0px;
	line-height: 45px;
}

		h5 {
	font-size: 30px;
	line-height: 50px;
}
	
		p1 {
	font-size: 20px;
	line-height: 35px;
}
	
	.about2 {
		width: 100%;
	}
	
hr {
		display: none;
	}

#feature {
	padding: 0 5px;
}

.responsive {
	width:  100%;
	padding: 10px 5px;
	}
	
	.responsive2 {
	width:  100%;
	padding: 10px 5px;
}

.logo {
	margin: 0 auto;
	width: 60%;
	display: block;
}

.logo img {
	width: 330px;
	height: 130px;
	background:url("images/logo3_UTerritory.png") no-repeat center;
}	
	
		#tagline {
	margin-top: 0;
}

.main {
	width: 95%;
	margin: 0 auto;
}
	
	.video1 {
	width: 95%;
	padding: 10px;
}
	
	.video2 {
	width: 100%;
	margin: 0 auto;
}
	
	.heading {
	left: 0;
	font-size: 35px;
}
	
	@-webkit-keyframes mymove-heading {
  from {left: 0px;}
  to {left: 10px;}
}

@keyframes mymove-heading {
  from {left: 0px;}
  to {left: 10px;}
}
	
		.button2 {
	font-size:50px;
	width: 80px;
	height: 80px;
}
	
	.quotation {
		width: 100%;
	}
	
		#myVideo2 { 
	width: 100%;
	height: auto;
}	
	
.portfolio2 {
	width: 95%;
	padding: 10px;
}
	
.video-container {
	position: relative;
	padding-bottom: 56.25%;
	padding-top: 30px;
	height: 0;
	overflow: hidden;
}

.video-container iframe,
.video-container object,
.video-container embed {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}

}

@media only screen and (max-width: 360px) {
nav a:link { color:#FFF;}

.menubar {
	width: 100%;	
	align: center;
	padding-top: 50px;	
}

hr {
	display: none;
}
	
	h2 {
	font-size: 30px;
	font-weight: 400;
	letter-spacing: 0px;
	line-height: 45px;
}

		h5 {
	font-size: 30px;
	line-height: 50px;
}
	
		p1 {
	font-size: 20px;
	line-height: 35px;
}
	
	.about2 {
		width: 100%;
	}
	
#feature {
	padding: 0 5px;
}

.responsive {
	width:  100%;
	padding: 10px 5px;
	}
	
	.responsive2 {
	width:  100%;
	padding: 10px 5px;
}

.logo {
	margin: 0 auto;
	width: 60%;
	display: block;
}

.logo img {
	width: 330px;
	height: 130px;
	background:url("images/logo3_UTerritory.png") no-repeat center;
}	

		#tagline {
	margin-top: 0;
}
	
.main {
	width: 95%;
	margin: 0 auto;
}
	
	.video1 {
	width: 95%;
	padding: 10px;
}
	
	.video2 {
	width: 100%;
	margin: 0 auto;
}
	
	.heading {
	left: 0;
	font-size: 35px;
}
	
	@-webkit-keyframes mymove-heading {
  from {left: 0px;}
  to {left: 10px;}
}

@keyframes mymove-heading {
  from {left: 0px;}
  to {left: 10px;}
}
		.button2 {
	font-size:50px;
	width: 80px;
	height: 80px;
}
	
	.quotation {
		width: 100%;
	}
	
		#myVideo2 { 
	width: 100%;
	height: auto;
}
	
.portfolio2 {
	width: 95%;
	padding: 10px;
}
	
.video-container {
	position: relative;
	padding-bottom: 56.25%;
	padding-top: 30px;
	height: 0;
	overflow: hidden;
}

.video-container iframe,
.video-container object,
.video-container embed {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}
	
}

