* {
  box-sizing: border-box;
}

:root {
    --royalblue: #4169E1;
    --pink: #e83e8c;
    --red: #d6293e;
    --brown: #e64b00;
    --green: #0cbc87;
	--blue: #007aff;
    --cyan: #17a2b8;
	--orange: #fd7e14;
    --purple: #6f42c1;
	--gray: #24292d;
	--opacity-bg: 0.1;
	--opacity: 0.2;
}

.royalblue {
    background: var(--royalblue);
    border: 1px solid var(--royalblue);
}

.pink {
    background: var(--pink);
    border: 1px solid var(--pink);
}

.pink:hover { background: #ffffff; color: var(--pink);  }
.pink:active { background: #ffffff; color: var(--pink);  }

.red {
    background: var(--red);
    border: 1px solid var(--red);
}

.green:hover { background: #ffffff; color: var(--red);  }
.green:active { background: #ffffff; color: var(--red);  }

.brown {
    background: var(--brown);
    border: 1px solid var(--brown);
}

.brown:hover { background: #ffffff; color: var(--brown);  }
.brown:active { background: #ffffff; color: var(--brown);  }

.green {
    background: var(--green);
    border: 1px solid var(--green);
}

.green:hover { background: #ffffff; color: var(--green);  }
.green:active { background: #ffffff; color: var(--green);  }

.blue {
    background: var(--blue);
    border: 1px solid var(--blue);
}

.blue:hover { background: #ffffff; color: var(--blue);  }
.blue:active { background: #ffffff; color: var(--blue);  }

.cyan {
    background: var(--cyan);
    border: 1px solid var(--cyan);
}

.cyan:hover { background: #ffffff; color: var(--cyan);  }
.cyan:active { background: #ffffff; color: var(--cyan);  }

.orange {
    background: var(--orange);
    border: 1px solid var(--orange);
}

.orange:hover { background: #ffffff; color: var(--orange);  }
.orange:active { background: #ffffff; color: var(--orange);  }

.purple {
    background: var(--purple);
    border: 1px solid var(--purple);
}

.purple:hover { background: #ffffff; color: var(--purple);  }
.purple:active { background: #ffffff; color: var(--purple);  }

.gray {
    background: var(--gray);
    border: 1px solid var(--gray);
}

.gray:hover { background: #ffffff; color: var(--gray);  }
.gray:active { background: #ffffff; color: var(--gray);  }

body {
    background-color: #f8f8f8;
	margin: 0px;
    font-family: Helvetica;
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
    background-position: center center;
    font-weight: normal;
    font-style: normal;
    color: #1a1a1a;
    font-size: 16px;
}

.body{
  height: 100vh;
  width: 100vw;
  overflow-x: hidden;
  overflow-y: hidden;
 /* padding-right: 17px;*/
}

h1 {
	float: left;
    color: #333;  /*#1567a6*/
    margin: 0px;
    font: normal 2.1em "Helvetica";
}

h2 {
    color: #333;
    margin: 32px 0px 8px 0px;
    font: normal 1.8em "Helvetica";
    float: left;
	width: 100%;
}


.copyright{
 /* line-height : 1.5;*/
}

p {
    line-height: 28px;
    text-align: justify;
}

p a {
    text-decoration: none;
    color: #41afa9;
}

ul {
	width: 100%;
    margin: 0px 0px 8px 0px;
    padding-left: 20px;
    float: left;
}

span.item {
	cursor: pointer;
	text-decoration: underline;
}

ol{
	margin: 0px 0px 8px 0px;
    /* list-style-type: none; */
    /* padding-left: 20px; */
    line-height: 25px;
    float: left;
}


.container {
	width: 1288px;
	height: 100vh;
    background-color: #ffffff;
    padding: 8px;
    margin-right: auto;
    margin-left: auto;
    clear: left;
	/*display: table;*/
}

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

.container {
    padding: 8px 0px;
}

}


@media screen and (max-width: 1305px) {
  .container {
    width: 100%;
 }
}

div.text{
    float: left;
    margin: 8px 0px;
    line-height: 28px;
    text-align: justify;
    width: 100%;
}

div.text p{
	text-indent: 20px;
	width: 100%;
    margin: 8px 0px 8px 0px;
  /*  line-height: 1.4;*/
    float: left;
}

.wrap {
    margin: 8px;
	min-height: 100px;
   /* text-align: justify; */
   /* display: flex; */
	  display: inline-block;
	  width: calc(100% - 16px);
}

.contactbtn {
    float: left;
    width: 100%;
    text-align: center;
    /* height: 56px; */
    margin-top: 32px;
    padding-top: 8px;
    padding-bottom: 8px;
    background: #fff;
}

a.cbutton {
   /* background: #41afa9; */
    color: white;
    margin: 8px 8px;
    font: normal 1.2em "Arial", "Helvetica", sans-serif;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    padding: 8px 16px;
   /* border: 1px solid #41afa9; */
    transition: 0.1s;
    border-radius: 8px;
}

a.buttonback:hover { background: #ffffff; color: #41afa9;  }
a.buttonback:active { background: #ffffff; color: #41afa9;  }
