<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">@charset "utf-8";
/* CSS Document */

* {
  box-sizing:border-box;
}

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
}

.ITCcontainer {
  padding: 20px;
}

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

.ITCcolumn-66 {
  float: left;
  width: 66.66666%;
  padding: 20px;
}

.ITCcolumn-33 {
  float: left;
  width: 33.33333%;
  padding-top: 15px;
}


.ITCxlarge-font {
  font-size: 18px;
  color: #066F6F;
}

.ITClarge-font {
  font-size: 16px;
  color: #106517;
}



/**** custom button******/

/******
.ITCbutton {
	border:none;
	border-radius:6px;
	color: white;
	padding: 10px 25px;
	text-align: center;
	text-decoration: none;
	display: inline-block;
	font-size: 14px;
	cursor: pointer;
	 transition: all 0.5s;
	background-color: #F56342;
	
}


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

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

.ITCbutton:hover{
	background-color: darkorange;
}

.ITCbutton:hover span {
  padding-right:15px;
  font-weight: bold;
}

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


///*******/

.ITCimage {
 padding-top: 25px;
display: flex;
  flex-direction: column;
  justify-content: center;  /* Centering y-axis */
 align-items :center; /* Centering x-axis */
  height: auto;
  max-width: 100%;
} 

@media screen and (max-width: 1000px) {
  .column-66,
  .column-33 {
    width: 100%;
    text-align: center;
  }

}</pre></body></html>