/* -----------------------------------------
   Home page slider
----------------------------------------- */
#home-slider .slick-slide {
  position: relative;
  height: 500px;
  /*define the height of slide*/
  -moz-transition: height 0.3s ease;
  -o-transition: height 0.3s ease;
  -webkit-transition: height 0.3s ease;
  transition: height 0.3s ease;
}
#home-slider .slider-caption {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  max-width: 500px;
  padding: 5px 10px;
  background: rgba(0, 0, 0, 0.6);
  text-align: center;
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}
#home-slider .slider-caption p, #home-slider .slider-caption h3 {
  color: #fff;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

@media only screen and (max-width: 1024px) {
  #home-slider .slick-slide {
    height: 400px;
    /*define the height of slide*/
  }
}
@media only screen and (max-width: 634px) {
  #home-slider .slick-slide {
    height: 300px;
    /*define the height of slide*/
  }
}
/* -----------------------------------------
   WordPress Core Classes
----------------------------------------- */
.alignnone {
  margin: 0 1em 1em 0;
}

.alignright {
  float: right;
  margin: 0 0 1em 1em;
}

.alignleft {
  float: left;
  margin: 0 1em 1em 0;
}

.aligncenter {
  display: block;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 1em;
}

.wp-caption {
  background: #fff;
  border: 1px solid #f0f0f0;
  max-width: 100%;
  /* Image does not overflow the content area */
  padding: 5px 5px 10px;
  text-align: center;
}
.wp-caption img {
  width: auto;
  margin-bottom: 10px;
}
.wp-caption p {
  margin-bottom: 0;
  font-size: 14px;
}

.gallery-caption {
  font-size: 12px;
}

#wpadminbar {
  opacity: 0.3;
  transition: 0.2s opacity linear;
  -webkit-transform: translateZ(0);
}
#wpadminbar:hover, #wpadminbar:focus {
  opacity: 1;
}

/* -----------------------------------------
    Contact Form
----------------------------------------- */
/*basic Gravity Form styles and fixes, if you dont need/use this comment or delete styles below*/
.gform_wrapper ul {
  list-style: none;
}

.gform_fields {
  margin: 0;
}

.gfield {
  list-style: none;
  margin-bottom: 50px;
}

.gfield_label {
  display: none;
}

.ginput_container ul {
  margin-left: 0;
}

.gfield_error input, .gfield_error textarea {
  border-color: red;
}

.gfield_description {
  margin-top: 10px;
}

.gform_confirmation_message {
  margin-bottom: 15px;
}

.gform_footer {
  text-align: right;
  /*aligning of submit button*/
}

.validation_error {
  margin-bottom: 15px;
  padding: 5px;
  color: #990000;
  border: 1px solid red;
}

.gfield_description.validation_message {
  margin-bottom: 10px;
  color: #990000;
}

.ui-datepicker {
  width: 216px;
  height: auto;
  margin: 5px auto 0;
  font-size: 11px;
  z-index: 9999 !important;
  -moz-box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.5);
  -webkit-box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.5);
  box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.5);
}
.ui-datepicker a {
  text-decoration: none;
}
.ui-datepicker table {
  width: 100%;
  border-collapse: collapse;
}
.ui-datepicker thead {
  background: #f7f7f7;
  border-bottom: 1px solid #bbb;
}
.ui-datepicker thead th {
  padding: 3px;
  text-align: center;
  border: 1px solid #ddd;
}
.ui-datepicker tbody {
  border: none;
}
.ui-datepicker tbody td {
  padding: 0;
  border: 1px solid #bbb;
}
.ui-datepicker tbody th {
  text-transform: uppercase;
  text-align: center;
  font-size: 6pt;
  padding: 5px 0;
  color: #666;
}
.ui-datepicker tbody td span, .ui-datepicker tbody td a {
  display: inline-block;
  font-weight: bold;
  text-align: center;
  width: 30px;
  height: 30px;
  line-height: 30px;
  color: #666;
}

.ui-datepicker-header {
  background-color: #666;
  /* set the header background color */
  color: #fff;
  font-weight: 700;
  border: none;
}
.ui-datepicker-header:after {
  content: '';
  clear: both;
  display: table;
}

.ui-datepicker-month,
.ui-datepicker-year {
  width: 50%;
  float: left;
  padding: 5px 20px 5px 5px;
  height: auto;
  font-size: 14px;
  margin-bottom: 5px;
}

.ui-datepicker-prev,
.ui-datepicker-next {
  font-size: 12px;
  color: #fff;
  padding: 5px;
  line-height: 1.4;
  width: 50%;
  float: left;
}

.ui-datepicker-next {
  text-align: right;
}

.ui-datepicker-calendar {
  margin: 0 0 0 0 !important;
}
.ui-datepicker-calendar .ui-state-default {
  background: #ededed;
}
.ui-datepicker-calendar .ui-state-hover {
  background: #fff;
}
.ui-datepicker-calendar .ui-state-active {
  background: #fff2aa;
  /* set the active date background color */
  border: 1px solid #c19163;
  /* set the active date border color */
  position: relative;
  margin: -1px;
  height: 32px;
  width: 32px;
}

.ui-datepicker-unselectable .ui-state-default {
  background: #f4f4f4;
  color: #b4b3b3;
}
.ui-datepicker-unselectable.ui-state-disabled {
  background-color: #d7d7d7;
}

/* -----------------------------------------
   General fixes
----------------------------------------- */
html, body {
  height: auto;
}

html {
  min-height: 100%;
  position: relative;
}

body {
  position: relative;
  min-height: 100vh;
}

/* Placeholder styling */
input:-moz-placeholder, textarea:-moz-placeholder {
  color: #555;
}
input::-moz-placeholder, textarea::-moz-placeholder {
  color: #555;
}
input:-ms-input-placeholder, textarea:-ms-input-placeholder {
  color: #555;
}
input::-webkit-input-placeholder, textarea::-webkit-input-placeholder {
  color: #555;
}

/* Input Styling */
[type=color],
[type=date],
[type=datetime-local],
[type=datetime],
[type=email],
[type=month],
[type=number],
[type=password],
[type=search],
[type=tel],
[type=text],
[type=time],
[type=url],
[type=week],
textarea,
select {
  /* STYLES GO THERE */
  margin-bottom: 0;
}

textarea[rows] {
  /*Styles for TextArea*/
  height: 180px;
  max-width: 100%;
}

[type=number]{
  -moz-appearance:textfield;
}

[type=number]::-webkit-inner-spin-button,
[type=number]::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

[type=checkbox],
[type=file],
[type=radio] {
  margin-bottom: 0;
}

button, .button, input[type='submit'], input[type='reset'] {
  border: none;
  padding: 10px 20px;
  margin-bottom: 0;
  background-color: #1a608b;
  color: #fff;
  font-family: "Open Sans", sans-serif;
  -moz-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
button:hover, button:focus, .button:hover, .button:focus, input[type='submit']:hover, input[type='submit']:focus, input[type='reset']:hover, input[type='reset']:focus {
  background-color: #124260;
}

table {
    border: 1.5px;!important;
    color: #000000;
}

/* -----------------------------------------
   Typography
----------------------------------------- */
body {
  color: #000;
  /*font-family: "Open Sans", sans-serif;*/
  font-family: "proxima-nova",sans-serif;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  font-family: inherit;
  color: inherit;
}

h1 {
  /*basic heading styles*/
}

h2 {
  /*basic heading styles*/
}

h3 {
  /*basic heading styles*/
}

h4 {
color: #F7941D;
font-family: "proxima-nova",sans-serif;
font-weight: 600;
margin-top:00px;
margin-bottom:10px;
}

h5 {
  /*basic heading styles*/
}

h6 {
  /*basic heading styles*/
}

p {
  /*basic paragraph styles*/
}
p:empty {
  display: none;
}
p a {
  text-decoration: none;
}

ul {
  /*basic list styles*/
}
ul li {
  /*basic list-item styles*/
}

a {
  color: #F7941D;
	font-weight: bold;
  -moz-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

a.meeting-doc {
		font-weight: normal;
}

a:hover, a:focus {
  /*basic hover and focus effects*/
  color: #2ba6cb;
  outline: none;
}

/* ------------------------------------
    Basic Styles
------------------------------------- */
/* Clearfix */
.clearfix {
  zoom: 1;
}
.clearfix:before, .clearfix:after {
  content: "";
  display: table;
  height: 0;
  overflow: hidden;
}
.clearfix:after {
  clear: both;
}

/* Button additional styles */
.button {
  -moz-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.button:hover, .button:focus {
  /*basic hover and focus effects*/
}

/* Align Middle */
.align-middle {
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  position: absolute;
  top: 50%;
  left: 50%;
}

/* Pagination */
ul.pagination {
  margin: 1rem 0;
}
ul.pagination .pagination {
  margin: 0;
}
ul.pagination .pagination.current {
  color: #fff;
  background: #1a608b;
  display: block;
}

/* Search form */
#searchform {
  position: relative;
}

#s {
  padding-right: 75px;
}

#searchsubmit {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  height: auto;
  padding: .5rem;
  cursor: pointer;
}
#searchsubmit:after {
  font-family: FontAwesome;
  font-size: 20px;
}

#home-slider .slick-slide {
  -moz-background-size: cover;
  -o-background-size: cover;
  -webkit-background-size: cover;
  background-size: cover;
  background-position: 50% 50%;
  background-repeat: no-repeat;
}

/* ------------------------------------
    Header Styles
------------------------------------- */
.logo img {
  max-height: 96px;
}

/* ------------------------------------
    Content Styles
------------------------------------- */
/* Blog page */
.posts-list article {
  padding-bottom: 20px;
  border-bottom: 1px solid #dddddd;
  margin-bottom: 20px;
}
.posts-list .entry-meta {
  margin-bottom: 0;
}
.posts-list #searchform {
  margin-bottom: 40px;
}

.entry-meta {
  color: #666;
  font-size: 14px;
}

.thumbnail {
  margin-bottom: 20px;
}

/* Comments block */
.comment-list {
  margin: 0;
  list-style: none;
  padding: 0;
}

.comment-meta {
  font-size: 14px;
}

.comment-metadata {
  color: #666;
}

.comment-content {
  font-size: 14px;
  padding-left: 25px;
  margin-top: 20px;
  border-left: 1px solid #ddd;
}

.reply {
  text-align: right;
}

.comment-reply-link {
  display: inline-block;
  padding: .33333rem .5rem;
  font-size: .8rem;
  line-height: 1;
  white-space: nowrap;
  border-radius: 0;
  background: #777;
  color: #fefefe;
}

/* 404 page */
.not-found {
  padding: 100px 0;
}
.not-found .label {
  text-decoration: none;
  cursor: pointer;
  background-color: #1a608b;
}
.not-found .label:hover {
  background-color: #144869;
  color: #fff;
}

/* Sidebar */
.widget {
  margin-bottom: 20px;
}

/*---------------------------------------
	TMPL: Home page
---------------------------------------*/
/* ------------------------------------
    Footer Styles
------------------------------------- */
.sticky-footer {
  position: relative;
  bottom: 0;
  left: 0;
  width: 100%;
}

.footer-menu {
  margin: 0;
  list-style: none;
  padding: 20px 0 0 0;
  text-align: right;
}
.footer-menu li {
  display: inline-block;
  margin-right: 25px;
}
.footer-menu li:last-child {
  margin-right: 0;
}
.footer-menu li a {
  display: block;
  font-weight: bold;
  font-size: 18px;
  color: #5DA1D8;

}
/*==========================*/
   /*Project styles*/
/*==========================*/
.cover {
    background-repeat: no-repeat;
    background-position: 50%;
    background-size: cover;
}
.top-line__text {
    font-size: 22px;
    color: #fff;
    text-align: center;
    line-height: 57px;
    margin-bottom: 0;
    font-weight: 500;
    letter-spacing: 2px;
    font-family: "trajan-pro-3",serif;

}
.logo-wrapp {
    max-width: 228px;
    max-height: 99px;
}
/*Navigation*/
/*.header {
  min-height: 126px;
}*/
.menu {
    margin-top: 40px;
}
.menu__list {
    float: right;
}
.menu__list-item {
    display: inline-block;
    margin-right: 10px;
    font-weight: bold;
    font-size: 26px;
    color: #5DA1D8;
}
.menu__list-item > a {
    color: #5DA1D8;
}
.menu__list-item:last-child {
    margin-right: 0;
}
.current_page_item {
  position: relative;
  transition: all .3s ease;
}
.footer-menu .current_page_item:after,
.accordion-menu .current_page_item:after {
  display: none;
}

/*Slider*/
.slider__slide {
    position: relative;
    min-height: 900px;
    /*min-height: calc(100vh - 183px);*/
    background-image: url(../img/1.png);
    text-align: center;
    vertical-align: bottom;
}
.slider__content {
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    text-align: center;
    width: 75%;
    background-color: #F7941D;
    margin: 0 auto;
    padding: 40px 7% 20px 7%;
    opacity: .92;
    z-index: 10;
}
.slider__title {
    font-size: 56px;
    font-weight: 600;
    text-transform: initial;
    margin-bottom: 40px;
    font-family: "trajan-pro-3",serif;
    line-height: 1;
}
.slider__title_upper {
  text-transform: uppercase;
}
.slider__paragraph {
    font-size: 30px;
    line-height: 1.2;
}
.slider__paragraph:last-child {
  margin-bottom: 0;
}
.slider__slide_dark {
  position: relative;
}
.slider__slide_dark:after {
  position: absolute;
  content: '';
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0,0,0,.4);
}
/*Collective*/
.collective {
    padding: 108px 0 100px 0;
}
.collective .box-title {
    padding-right: 55px;
    float: right;
    text-align: right;
}
.top-title {
    font-weight: 100;
    font-size: 56px;
    margin-bottom: 0;
    line-height: 1;
    text-transform: uppercase;
}
.bottom-title {
    font-size: 90px;
    line-height: 1;
    text-transform: uppercase;
    font-family: "trajan-pro-3",serif;
    font-weight: 600;
}
.title-underline {
    position: relative;
}
.title-underline:after {
    position: absolute;
    content: '';
    bottom: -30px;
    left: 50%;
    transform: translateX(-50%);
    width: 115px;
    height: 4px;
    background-color: #fff;
}
.collective__content {
    padding: 10px 0 0 46px;
}
.column-border {
    border-left: 2px solid #95989A;
}
.collective__content-item {
    max-width: 600px;
    margin-bottom: 50px;
}
.collective__content-item:last-child {
  margin-bottom: 0;
}
.collective__title {
    font-size: 36px;
    color: #5DA1D8;
    text-transform: initial;
    line-height: 1;
    margin-bottom: 0;
    font-family: "trajan-pro-3",serif;
    font-weight: 600;
}
.collective__text {
    font-size: 22px;
    line-height: 1;
}

/*Vision*/
.vision {
    padding-top: 125px;
    background-color: #F7941D;
    min-height: 645px;
    text-align: center;
}
.vision .box-title {
    text-align: center;
    margin-bottom: 60px;
}
.vision__text p {
    font-size: 35px;
    max-width: 1300px;
    margin: 0 auto;
    line-height: 1.2;
}

/*Story*/
.story {
    min-height: 1315px;
    background-image: url(../img/2.png);
    padding: 178px 0 143px 0;
    box-sizing: border-box;
}
.story .box-title {
  margin-bottom: 75px;
}
.story-box-single {
  padding: 50px 0;
}
.story-box {
  padding: 40px 65px 70px 65px;
  background-color: #fff;
  border-radius: 10px;
}
.story-item {
  margin-bottom: 70px;
}
.story-item:last-child {
  margin: 0;
}
.story-item__title {
  font-size: 36px;
  color: #F7941D;
  font-weight: 600;
  text-transform: uppercase;
  line-height: 1;
  font-family: "trajan-pro-3",serif;
}
.story__content {
  font-size: 20px;
  margin-bottom: 10px;
}
.story__content p {
  line-height: 1.3;
}
.story__content p:last-child {
  margin-bottom: 0;
}
.blue-btn {
  display: inline-block;
  font-size: 16px;
  font-weight: bold;
  color: #fff;
  text-transform: uppercase;
  padding: 10px 30px;
  background-color: #5DA1D8;
  border-radius: 42px;
  text-align: center;
  transition: all .3s ease;
  margin-bottom:20px;
}
.blue-btn:hover,
.blue-btn:focus {
  color: #fff;
  background-color: #3185ca;
}

.orange-btn {
  display: inline-block;
  font-size: 16px;
  font-weight: bold;
  color: #000;
  text-transform: uppercase;
  padding: 10px 30px;
  background-color: #FD9E19;
  border-radius: 42px;
  text-align: center;
  transition: all .3s ease;
  margin-bottom:20px;
}
.orange-btn:hover,
.orange-btn:focus {
  color: #fff;
  background-color: #ed8b02;
}

/*Video*/
.videos {
  padding: 110px 25px 114px 40px;
  background-color: #bfd9ee;
}
.video {

}
.video__item {
  width: 100%;
  height: 100%;
}
.video-content__title {
  font-size: 25px;
  font-family: "trajan-pro-3",serif;
  line-height: 1.2;
  margin-bottom: 15px;
}
.video-content__text {
  font-size: 20px;
  line-height: 1.3em;
}

/*Strategic Page*/
.slider__slide_height {
  min-height: 500px;
}
.main-content {
  padding: 100px 20px;
}
.main-content .row {
  max-width: 1307px;
}
.main-content__text {
  font-size: 30px;
}
.strategic__img {
  background-color: #ccc;
  border: 5px solid #dedede;
}
.slider__title_margin {
  margin-bottom: 20px;
}
.strategic__content h1, 
.strategic__content h2, 
.strategic__content h3, 
.strategic__content h4, 
.strategic__content h5,
.strategic__content h6 {
  font-weight: 500;
  font-family: "trajan-pro-3",serif;
  line-height: 1.2;
}
.strategic__content ul,
.strategic__content ol {
  padding-left: 15px;
  line-height: 1.3;
}

.advocacy .main-content__text h1,
.advocacy .main-content__text h2,
.advocacy .main-content__text h3,
.advocacy .main-content__text h4,
.advocacy .main-content__text h5,
.advocacy .main-content__text h6 {
  font-family: "trajan-pro-3",serif;
  font-weight: 500;
}

/*Meetings/Events Page*/
.meetings-evetns p {
  line-height: 1.2;
}
.meetings {
  padding-bottom: 100px;
}
.meetings__title {
  color: #5DA1D8;
  text-align: center;
  margin-bottom: 40px;
  text-transform: uppercase;
  font-weight: 500;
  font-family: "trajan-pro-3",serif;
}
.meeting {
  -webkit-box-shadow: 0px 0px 5px 0px rgba(0,0,0,0.16);
  -moz-box-shadow: 0px 0px 5px 0px rgba(0,0,0,0.16);
  box-shadow: 0px 0px 5px 0px rgba(0,0,0,0.16);
  text-align: center;
  padding-top: 35px;
  min-height: 320px;
  padding-bottom: 20px;
	margin-bottom:20px;
}
.meeting__title {
  font-size: 48px;
  color: #F7941D;
  font-weight: 600;
  font-family: "trajan-pro-3",serif;
  line-height: 1;
  margin-bottom: 0;
}
.meeting__subtitle {
  font-size: 30px;
}
.meeting-doc {
  font-size: 26px;
  display: block;
  color: #000;
  transition: all .3s ease;
}
.meeting-doc:hover {
  color: #F7941D;
}
.meeting-doc__icon {
  max-height: 24px;
}
/*Contact Us Page*/
.form-main-wrapp {
  max-width: 1150px;
  margin: 0 auto;
}
.contact-us__text {
  font-size: 30px;
  text-align: center;
}
.form__field_text,
.form__field_mail,
.form__field_number {
  width: 100%;
  min-height: 57px;
}
.form__label {
  margin-bottom: 50px;
}
.form__label-text {
  font-size: 20px;
  text-transform: uppercase;
}
.form__field_text-area {
  width: 100%;
  min-width: 100%;
  max-width: 100%;
  min-height: 180px;
  max-height: 180px;
  margin-bottom: 50px;
}
.contact-form__btn-wrapp {
  text-align: left;
}
.contact-form__btn {
  width: initial;
  display: inline-block;
  padding: 0;
  text-align: center;
  color: #5DAF70;
  border: 2px solid #5DAF70;
  text-transform: uppercase;
  font-weight: bold;
  border-radius: 33px;
  font-size: 18px;
}
.checkboxes {
  margin-bottom: 40px;
}
.checkbox {
  display: inline-block;
}
.checkbox__input {
  display: none;
}
.checkbox__custom {
  position: relative;      
  width: 32px;            
  height: 28px;            
  border: 2px solid #D5D5D5;
  border-radius: 10px;
  background: #F0F0F0;  
  margin-right: 10px;
}
.checkbox__label {
  font-size: 22px;
}
.checkbox__custom,
.checkbox__label {
    display: inline-block;
    vertical-align: middle;
    cursor: pointer;
}
.checkbox__input:checked + .checkbox__custom::before {
    content: "";             
    display: block;          
    position: absolute;      
    top: 8px;
    right: 10px;
    bottom: 8px;
    left: 10px;
    background: #b8b4b4;    
    border-radius: 10px;
}

.gfield_html {
	font-size:24px;
	margin:20px 0px 20px 0px;
	text-align: center;
}

/*Gravity*/
.gfield_description {
  font-size: 20px;
  text-transform: uppercase;
  color: #535353;
}
.form__field {
  width: 50%;
  display: inline-block;
  padding: 0 15px;
  vertical-align: text-top;
}
.medium {
  background-color: #F0F0F0;
  border: 2px solid #D5D5D5;
  border-radius: 33px;
  min-height: 57px;
  font-size: 20px;
  padding: 15px;
}
.validation_error {
  border: none;
}
.validation_message {
    text-transform: initial;
    margin-top: 0;
}
.gravity-checkboxes {
  padding: 0 15px;
  width: 50%;
  display: inline-block;
}
.gravity-checkboxes label {
  font-size: 22px;
}
.gravity-checkboxes input {
  width: 20px;
  height: 20px;
  vertical-align: sub;
}
.gravity-field-f-width {
  width: 100%;
  padding: 0 15px;
}
.gform_footer {
  text-align: left;
  padding: 0 15px;
}
.gform_footer input[type='submit'] {
    width: initial;
    display: inline-block;
    padding: 13px 20px;
    text-align: center;
    color: #5DAF70;
    border: 2px solid #5DAF70;
    text-transform: uppercase;
    font-weight: bold;
    border-radius: 33px;
    font-size: 18px;
    background-color: #fff;
    transition: all .3s ease;
}
.gform_footer input[type='submit']:hover {
  color: #F7941D;
  border: 2px solid #F7941D;
}

.gform_ajax_spinner {
  display: none;
}
/*Footer*/
.footer {
  /*border-top: 1px solid #95989A;*/
}
.footer__content {
  margin-top: 20px;
  margin-bottom: 40px;
}
.footer__content-item:last-child {
  margin-bottom: 0;
}
.footer-rights {
  text-align: left;
  margin-bottom: 0;
  font-weight: bold;
}
.footer-img {
  float: right;
}

.gfield_checkbox input {
  display: none;
}
.gfield_checkbox label {
  position: relative;
  padding-left: 50px;
  display: block;
  margin-bottom: 10px;
  margin-left: 0;
}
.gfield_checkbox label:before {
    font-size: 16px;
    position: absolute;
    display: block;
    content: '';
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    width: 32px;            
    height: 28px;            
    border: 2px solid #D5D5D5;
    border-radius: 10px;
    background: #F0F0F0; 
}
.gfield_checkbox input:checked + label:before {
  font-family: FontAwesome;
  content: '\f00c';  
  background-color: #ccc;
  width: 32px;            
  height: 28px;            
  border: 2px solid #D5D5D5;
  border-radius: 10px;
  background: #F0F0F0; 
  text-align: center;
}
.g-recaptcha iframe {
  margin-left: 15px;
}
.gform_confirmation_message {
    margin-bottom: 15px;
    font-size: 24px;
    text-align: center;
    color: #96c617;
}
.dropdown.menu>li.opens-right>.is-dropdown-submenu {
    top: 100%;
    right: auto;
    left: 0;
    background: #fff;
    padding: 10px;
    -webkit-box-shadow: 0px 0px 5px 0px rgba(0,0,0,0.16);
    -moz-box-shadow: 0px 0px 5px 0px rgba(0,0,0,0.16);
    box-shadow: 0px 0px 5px 0px rgba(0,0,0,0.16);
    text-align: left;
	z-index:11;
}

table tbody, table tfoot, table thead, table th, table td {
    border: 1px solid #666;
    background-color: transparent;
}

hr {
    max-width: 100%;
    border-bottom: 2px dotted #333;

}

h1 img {
	width: 75px;
	height: auto;
	margin-right: 10px !important;
	margin-bottom: 10px !important; 
	position: relative;
	top: -10px;
}