/* Add your CSS here */

/*Structure & Governance page*/


 .tree .parent,
                .tree .ceo,
				.tree .child,
                .tree .sub-child {
                    position: relative;
                    margin-bottom: 35px;
                }
                .tree .parent .label,
				.tree .ceo .label,
                .tree .child .label,
                .tree .sub-child .label {
                    position: relative;
                    display: inline-block;
                    border-radius: 5px;
                    box-shadow: 0 2px 3px rgba(0,0,0,0.3);
                }
                .tree .label span.line {
                    position: absolute;
                    left: 0;
                    right: 0;
                    bottom: -35px;
                    margin: 0 auto;
                    background: #000;
                    height: 35px;
                    width: 1px;
                }
                .tree .label span.line:after {
                    content: '';
                    width: 0; 
                    height: 0; 
                    border-left: 7px solid transparent;
                    border-right: 7px solid transparent;
                    border-top: 10px solid #000;
                    position: absolute;
                    bottom: 0;
                    left: -6px;
                }
                .tree .child .label span,
				.tree .ceo .label span,
                .tree .sub-child .label span {
                    display: block;
                    color: #fff;
                    font-size: 16px;
                    line-height: 1.3;
                    padding-bottom: 2px;
                }
                .tree .parent .label {
                    background: #32cd32;
                    color: #000;
                    font-size: 16px;
                    padding: 15px 25px;
                    max-width: 240px;
                    width: 100%;
                    text-transform: uppercase;
                }
                .tree .parent .label span.line {
                    background: #32cd32;
                }
                .tree .parent .label span.line:after {
                    border-top-color: #32cd32;
                }

  				.tree .ceo .label {
                    background: #32cd32;
                    color: #000;
                    font-size: 16px;
                    padding: 15px 25px;
                    max-width: 240px;
                    width: 100%;
                    
                }
                .tree .ceo .label span.line {
                    background: #32cd32;
                }
                .tree .ceo .label span.line:after {
                    border-top-color: #32cd32;
                }



                .tree .child {
                    display: flex;
                }
                .tree .child:before {
                    content: '';
                    position: absolute;
                    left: 0;
                    right: 0;
                    top: 50%;
                    width: 90%;
                    height: 1px;
                    background: #63a537;
                    margin: 0 auto;
                }
                .tree .child .label {
                    background: #32cd32;
                    color: #000;
                    font-size: 14px;
                    line-height: 1.2;
                    padding: 10px 20px;
                    width: 55%;
                    max-width: 100%;
                    white-space: normal;
                }
                .tree .child .label:nth-child(2) {
                    margin: 0 50px;
                }
                .tree .child .label:nth-child(1) span.line {
                    left: inherit;
                    right: 50px;
                }
                .tree .child .label:nth-child(3) span.line {
                    left: 50px;
                    right: inherit;
                }
                .tree .child .label span.line {
                    background: #32cd32;
                }
                .tree .child .label span.line:after {
                    border-top-color: #32cd32;
                }


 				.tree .child .label span.line.first {
                    left: 70px;
                    right: inherit;
                }
                .tree .child .label span.line.last {
                    left: inherit;
                    right: 70px;
                }





                .tree .sub-child .label {
                    background: #939598;
                    color: #000;
                    font-size: 14px;
                    max-width: 100%;
                    width: 60%;
                    padding: 10px 20px;
                }
                .tree .sub-child .label span.line {
                    background: #939598;
                }
                .tree .sub-child .label span.line:after {
                    border-top-color: #939598;
                }
                .tree .sub-child .label span.line.first {
                    left: 70px;
                    right: inherit;
                }
                .tree .sub-child .label span.line.last {
                    left: inherit;
                    right: 70px;
                }
                
                .tree .last-child a.btn {
                    display: inline-block;
                    background: #2f2f2f;
                    background: -moz-linear-gradient(top, #2f2f2f 0%, #000000 100%);
                    background: -webkit-linear-gradient(top, #2f2f2f 0%,#000000 100%);
                    background: linear-gradient(to bottom, #2f2f2f 0%,#000000 100%);
                    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#2f2f2f', endColorstr='#000000',GradientType=0 );
                    color: #fff;
                    font-size: 16px;
                    border-radius: 5px;
                    box-shadow: 0 0 4px rgba(0,0,0,0.3);
                    width: 100%;
                    margin-bottom: 15px;
                    padding: 10px 20px;
                    text-decoration: underline;
                    white-space: normal;
                }
                .tree .last-child ul li {
                    padding-bottom: 5px;
                }
                .tree .last-child ul li a {
                    font-weight: 600;
                    font-style: italic;
                    text-decoration: underline;
                }
                .tree-footer {
                    padding: 0 20px;
                }

                @media (min-width: 1200px) {
                    .tree {
                        padding: 0 80px;
                    }
                    .tree-footer {
                        padding: 0 50px;
                    }
                }
                @media (max-width: 991px) {
                    .tree .sub-child .label {
                        width: 70%;
                    }
                    .tree .last-child a.btn {
                        height: 70px;
                    }
                }
                @media (max-width: 767px) {
                    .tree .sub-child .label span.line.first,
                    .tree .sub-child .label span.line.last {
                        display: none;
                    }
                    .tree .last-child a.btn {
                        height: auto;
                    }
                    .tree .child .label:nth-child(2) {
                        margin: 0 15px;
                    }
                    .tree .sub-child .label {
                        width: 80%;
                    }
                    .tree-footer {
                        margin-top: 30px;
                    }
                }
                @media (max-width: 550px) {
                    .tree .sub-child .label {
                        width: 85%;
                    }
                }




/*Main Home page header underline*/

.titleunder {
  text-decoration-line: underline;
  text-decoration-style: solid;
  text-underline-offset: 10px;
  text-decoration-color: #32cd32;
  text-decoration-thickness: 8px;
}

h2.home {
 
  font-family: 'Oswald', sans-serif;
  font-weight: normal;
  line-height: 1.2em;
  margin: 0 0 1em 0;
  color: #5c6262;
  text-transform: uppercase;
  text-align: center;
 font-size: 34px;
	padding-bottom: 20px;
}	
	
h2.home2 {
 
  font-family: 'Oswald', sans-serif;
  font-weight: normal;
  line-height: 1.2em;
  margin: 0 0 1em 0;
  color: #ffffff;
  text-transform: uppercase;
  text-align: center;
 font-size: 34px;
	padding-top: 20px;
	padding-bottom: 20px;
}	

.home-section {
    
  		background-image: url("../images/OMG_testimonial-block_2-sm.png");
        background-size: 100% 100%;
        background-repeat: no-repeat;
  		padding: 0px 0 0px 0;
	 
}

.home-section2 {
    
  		background-image: url("../images/OMG_home_bkgd.jpg");
        background-size: 100% 100%;
        background-repeat: no-repeat;
  		padding: 50px;
	  
}

.home-section2 a {
        color: #32cd32;
      }
     

	
.home-overlay {
	
  position:relative;
  margin: 0px;
  background: rgb(0, 0, 0);
  background: rgba(0, 0, 0, 0.5); /* Black see-through */
  opacity: 1;
  transition: .5s ease;
  color: black;
  font-size: 50px;
  padding: 30px;
  text-align: left;
  width:100%;
  height: 100%;
  border-radius: 15px;
}

.home-overlay2 {
	
  position:relative;
  margin: 0px;
  background: rgb(0, 0, 0);
  background: rgba(0, 0, 0, 0.5); /* Black see-through */
  opacity: 5;
  transition: .5s ease;
  color: black;
  font-size: 50px;
  padding: 30px;
  text-align: left;
  width:100%;

}


/*No overlay version for SDO home page*/

.home-overlay3 {
	
  position:relative;
  margin: 0px;
 
  transition: .5s ease;
  
  font-size: 50px;
  padding: 30px;
  text-align: left;
  
  border-radius: 15px;
}

.home-overlay4 {
	
  position:relative;
  margin: 0px;
 
  transition: .5s ease;
  
  font-size: 50px;
  padding: 30px;
  text-align: left;
 

}





.home-section3 {
    
  		background-color: #0376c8;
        background-size: 100% 100%;
 		padding: 40px 50px 40px 50px;
	   
}

.home-section3 a {
        color: #ffffff;
      }


.verticalLine {
  border-right: thick solid #70c4e7;
  
  height: 115px;
}
.logomid {  
        
        margin: 20px;
        position: relative;
    }    


.home-section4 {
    
  		background-image: url("../images/OMG_testimonial-block_2a.jpg");
        background-size: 100% 100%;
        background-repeat: no-repeat;
  		padding: 0px 0 0px 0;
	   
}

.home-section5 {
    
  		background-color: #e9efef;
        padding: 50px;
	    text-align: center;
	   
}
.home-tiles a {
        color: #152756;
      }

.home-tiles p {
	font-size: 18px;
	line-height: 1.6em;
}


.footer h2{
	
	color:#32cd32;
	text-align: center;
	font-size: 30px;
	font-family: 'Oswald', sans-serif;
}

@media only screen and (min-device-width: 320px) and (max-device-width: 630px) {
	
	h2.home2 {
 
  font-family: 'Oswald', sans-serif;
  font-weight: normal;
  line-height: 1.9em;
  margin: 0 0 1em 0;
  color: #ffffff;
  text-transform: uppercase;
  text-align: center;
 font-size: 34px;
	padding-top: 20px;
	padding-bottom: 10px;
}	

}

@media only screen and (min-device-width: 320px) and (max-device-width: 630px) {
.home-section2 {
    
  		background-image: url("../images/OMG_home_bkgd.jpg");
        background-size: 100% 100%;
        background-repeat: no-repeat;
  		padding: 40px 20px 40px 20px;
	  
}	
}


@media only screen and (min-device-width: 320px) and (max-device-width: 630px) {
.home-section3 {
    
  		background-color: #0376c8;
        background-size: 100% 100%;
 		padding: 40px 20px 40px 20px;
	   
}
}

@media only screen and (min-device-width: 320px) and (max-device-width: 630px) {
.home-section5 {
    
  		
 		padding: 40px 20px 40px 20px;
	   
}
}



@media only screen and (min-device-width: 320px) and (max-device-width: 630px) {
	
.verticalLine {
  padding-left: 0px;
}
}


@media only screen and (min-device-width: 320px) and (max-device-width: 630px) {
	
	.home-section5 h2 {
 
  
  line-height: 1.9em;
		padding-bottom: 0px;
  
}	

}

/*Switching logos to white on mobile devices


#sdo-nav {
	background-image: url("../images/logos/sdo-nav.png");
    height: au;
	width: 162px;
	background-repeat: no-repeat;
}

@media all and (max-width: 499px) {
    #sdo-nav {
        background-image: url("../images/logos/sdo-nav-w.png");
        height: auto;
	    width: 162px;
	    background-repeat: no-repeat;
    }
}*/






/*AREA STYLE*/

.page-heading2 {
    background: #2da7b2;
    border-top: 6px solid #d4d4d4;
    border-bottom: 6px solid #d4d4d4;
    position: relative;
    text-align: center;
}

.table2 > thead > tr > th {
    padding: 14px;
    font-family: 'Oswald', sans-serif;
    text-transform: uppercase;
    font-weight: normal;
    color: #ffffff;
    background-color: #0f3a4a;
    vertical-align: middle;
}

.footer-copyright2 {
    border-top: 0px solid #191919;
    background: #2ca7b2;
    font-size: 11px;
	color: black;
    padding: 20px 0;
    text-align: center;
}



/* Logo Height on Scroll */
.header.headhesive.headhesive--stick .logo img {
	/*height: 28px;*/
}

/* Changing color of three dots decorations on home page

.title-decorated h1 {
    margin-bottom: 0;
    position: relative;
    text-align: center;
	
}

.title-decorated h1:before {
    content: "";
    display: block;
    position: absolute;
    left: 50%;
    bottom: -40px;
    width: 14px;
    height: 14px;
    margin-left: -7px;
    border-radius: 50%;
    background: #fbb034;
}

.title-decorated:before, .title-decorated:after {
    content: "";
    display: block;
    position: absolute;
    left: 50%;
    bottom: 3px;
    border-radius: 50%;
    width: 8px;
    height: 8px;
    background: #fbb034;
}*/


/*Reduced space between the black breadcrumps bar and the content of the page. Default is 90px*/

.page-content {padding-top:60px;} 

/*Changing color for  hr with a circle*/

.hr-with-icon.icon-primary {
    color: #32cd32;
}


/*Changed padding around the logo so the white space is tight*/

/* Logo */
.header .logo {
  margin: 0;
  padding: 30px 0 5px 0;
  -webkit-transition: 0.2s;
  transition: 0.2s;
  float: left;
 margin-left: 0px; /*added to adjust breakpoint to fit About us menu item was -30*/
}

.header .logo2 {
  margin: 0;
  padding: 20px 0 5px 0;
  -webkit-transition: 0.2s;
  transition: 0.2s;
  float: left;
 margin-left: 0px; /*added to adjust breakpoint to fit About us menu item was -30*/
}

.header .logo2 img {
    position: relative;
    display: inline-block;
    z-index: 2;
}



.header .logo3 {
  margin: 0;
  padding: 0px 0 25px 0;
  -webkit-transition: 0.2s;
  transition: 0.2s;
  float: left;
 margin-left: 0px; /*added to adjust breakpoint to fit About us menu item was -30*/
}


/*slider thumb color*/

.rsThumb {
  font-size: 14px;
  line-height: 18px;
  font-family: 'Oswald', sans-serif;
  text-transform: uppercase;
  padding: 23px;
  color: #2f2f2f;
  border-left: 1px solid #e5e5e5;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.rsMinW .rsThumb.rsNavSelected {
	background: #000;
}

/*.rsOverlay {
  opacity: 0.25;
  filter: alpha(opacity=55.00000000000001);
  position: absolute;
  top: 10%;
  right: 0;
  left: 0;
  height: 80%;
  background: #000;
}*/

.dark-bg .tp-bgimg.defaultimg {
    opacity: 0.5 !important;
}

/*font size*/

/*changed background to repeat and different image
body.bg1 {
  background: #ffffff url(../images/bg2.jpg) 100% 0 repeat-y;
  -webkit-background-size: contain;
  background-size: contain;
}*/


body.bg1 {
  background: #ffffff url(../images/bg1.jpg) 50% 0 repeat-x;
  -webkit-background-size: contain;
  background-size: contain;
}


/*Menu color from grey rollover to black*/



.fhmm .navbar-collapse .navbar-nav > li > .dropdown-menu {
  margin-top: 0;
}
.fhmm .dropdown a,
.fhmm .dropdown-menu a {
  color: #2f2f2f;
}
.fhmm .dropdown a:hover,
.fhmm .dropdown-menu a:hover {
  text-decoration: none;
color: #000000;
}
.fhmm .dropdown-menu {
  box-shadow: none;
  border: none;
  border-bottom: 1px solid #efefef;
  padding: 0 15px;
  left: auto;
  -webkit-box-shadow: 0 3px 12px rgba(0, 0, 0, 0.15);
  box-shadow: 0 3px 12px rgba(0, 0, 0, 0.15);
}
@media (min-width: 992px) {
  .fhmm .dropdown-menu {
    padding: 0;
  }
}
.fhmm .dropdown-menu > li {
  border: none;
}
.fhmm .dropdown-menu > li > a {
  color: #fff !important;
  padding: 10px 20px;
  -webkit-transition: 0.2s;
  transition: 0.2s;
}
.fhmm .dropdown-menu > li > a:hover {
  -webkit-transition: none;
  transition: none;
  color: #fff;
}
@media (min-width: 992px) {
  .fhmm .dropdown-menu > li > a {
    color: #2f2f2f !important;
  }
  .fhmm .dropdown-menu > li > a:hover {
    color: #000000;
  }
  .fhmm .dropdown-menu > li > a .label {
    margin-left: 5px;
  }
}
.fhmm .dropdown-menu > li:last-child > a {
  border-radius: 0 0 6px 6px;
}
.fhmm .dropdown-menu > li.active > a {
  background: #efefef;
}
.fhmm .dropdown-menu > li + li a {
  border-top: 1px solid #2f2f2f;
}
@media (min-width: 992px) {
  .fhmm .dropdown-menu > li + li a {
    border-top: 1px solid #efefef;
  }
}
@media (min-width: 992px) {
  .fhmm .dropdown-menu .withoutdesc {
    margin-top: 0;
    display: block;
    text-align: left;
    text-transform: none;
    width: 100%;
  }
}
.fhmm .dropdown-menu .fhmm-content.withdesc a:after {
  color: #CFCFCF;
  content: attr(data-description);
  display: block;
  font-size: 11px;
  font-weight: 400;
  line-height: 0;
  margin: 10px 0 15px;
  text-transform: uppercase;
}
.fhmm .dropdown-submenu {
  position: relative;
}
.fhmm .dropdown-submenu > .dropdown-menu {
  top: 0;
  left: 100%;
  margin-top: 0;
}
.fhmm .dropdown-submenu > .dropdown-menu > li:first-child > a {
  border-top: none !important;
  border-radius: 6px 6px 0 0 !important;
}
.fhmm .dropdown-submenu:hover > .dropdown-menu {
  display: block;
}
.fhmm .dropdown-submenu > a:after {
  display: block;
  content: " ";
  float: right;
  width: 0;
  height: 0;
  border-color: transparent;
  border-style: solid;
  border-width: 5px 0 5px 5px;
  border-left-color: #cccccc;
  margin-top: 5px;
  margin-right: -10px;
}
.fhmm .dropdown-submenu:hover > a:after {
  border-left-color: #ffffff;
}
.fhmm .dropdown-submenu.pull-left {
  float: none;
}
.fhmm .dropdown-submenu.pull-left > .dropdown-menu {
  left: -100%;
  margin-left: 10px;
  -webkit-border-radius: 6px 0 6px 6px;
  -moz-border-radius: 6px 0 6px 6px;
  border-radius: 6px 0 6px 6px;
}



/*Remove fading effect on partners logo*/

.partners__logos > li img {
    max-width: 100%;
    height: auto;
    -webkit-transition: 0.2s;
    transition: 0.2s;
    opacity: 1.5;
    filter: alpha(opacity=0);
}


body {
  background-color: #fff;
  color: #000000;
  font-family: 'Muli', sans-serif;
  font-size: 14px;
  line-height: 20px;
  margin: 0;
}

/*Change color of Header 1,2,3...*/

/*
// #Headings
// --------------------------------------------------
*/
h1,
h2,
h3,
h4,
h5,
h6,
.h1,
.h2,
.h3,
.h4,
.h5,
.h6 {
  font-family: 'Oswald', sans-serif;
  font-weight: normal;
  line-height: 1.2em;
  margin: 0 0 1em 0;
  color: #000000;
  text-transform: uppercase;
}

.pcenter {text-align: center;}

/* Slider height */

.royalSlider { height: 240px;}

@media (min-width: 768px) {
    .royalSlider { height: 420px;}
}

@media (min-width: 992px) {
    .royalSlider { height: 540px;}
}
/*distance between menu and slider; was 40px before*/
.sliderHolder {
    padding: 10px 0 0 0;
}

/*Slider small text */

.tp-caption.stability_verysmall_white_mw {
	
	max-width:750px;
	
}

/*button in the slider

.tp-caption a:hover {
color:#fbb034;
}*/


.tp-caption a {
color:#ffffff;
text-shadow:none;
-webkit-transition:all 0.2s ease-out;
-moz-transition:all 0.2s ease-out;
-o-transition:all 0.2s ease-out;
-ms-transition:all 0.2s ease-out;
}

.tp-caption a:hover {
color:#ffffff;
}
/*increase dark overlay in the slider*/

.rsOverlay {
  opacity: 0.65;
  filter: alpha(opacity=55.00000000000001);
  position: absolute;
  top: 10;
  right: 0;
  left: 0;
  height: 80%;
  background: #000;
}
@media (min-width: 768px) {
  .rsOverlay {
    height: 70%;
    top: 17%;
  }
}
/*Changed main title on the slider from white to yellow
.tp-caption.stability_large_white {
    border-width: 0px;
    border-style: none;
    border-color: #000000;
    background-color: transparent;
    color: #fbb034;
    text-decoration: none;
    text-transform: uppercase;
    text-shadow: none;
    text-shadow: 0 1px 1px rgb(0 0 0 / 50%);
    letter-spacing: 0;
    font-weight: 400;
    font-size: 72px;
    font-family: 'Anton', sans-serif;
    line-height: 72px;
}*/


.bContainer {
  position: absolute;
  top: 20%;
  left: 0;
  right: 0;
}
@media (min-width: 768px) {
  .bContainer {
    top: 30%;
  }
}
/*grey dividers in top title in the slider*/
.bContainer .stability_graydivider2px.left {
  margin-left: -250px;
}

.bContainer .stability_graydivider2px.right {
  margin-left: 170px;
}

/* Responsive video 
.video-container {
	position:relative;
	padding-bottom:66.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%;
}*/


/*changed color of the top bar to teal*/

.header-top {
  background: #666666;
  padding: 14px 0;
  color: #000000;
  font-size: 10px;
  line-height: 16px;
  text-transform: uppercase;
}



.header-top ul {
  padding-top: 10px;
  padding-left: 0;
  list-style: none;
  margin-left: -5px;
  margin: 0;
  display: inline-block;
}

.header-top-left {
  float: left;
  
}

/* Table Header */

.table > thead > tr > th {
  padding: 14px;
  font-family: 'Oswald', sans-serif;
  text-transform: uppercase;
  font-weight: normal;
  color: #ffffff;
  background-color: #000000;
 vertical-align: middle;
}








/*Links for schedule page*/


a.sch {font-size: 150%;}



/*
// #Buttons
// --------------------------------------------------
*/

/*Buttons Style Endss (font color)*/



/*// #Links
// --------------------------------------------------
*/
/*.container a:link{
  color: #00a9a1;
  text-decoration: none;
}

.container a:hover {
  color: #000000;
  text-decoration: underline;
}

*/

/*.container a:visited {
  color: #000000;
  text-decoration: none;
}*/



/*Attention style*/

.attention {
    color:purple;
	font-weight: bold;
	text-transform: uppercase; 
}



/*Note style*/

.note {
    color:grey;
	font-size: 9px;
	 
}

/*Changed color for divider with a cercle in the middle*/
.hr-with-icon.icon-primary {
  color: #0376c8;
}

/* Checkbox */
.checkbox__custom label {
  display: inline-block;
  cursor: pointer;
  position: relative;
  padding-left: 5px;
}
.checkbox__custom label:before {
  position: absolute;
  top: 1px;
  left: -20px;
  display: inline-block;
  margin-right: 10px;
  width: 18px;
  height: 18px;
  border: 1px solid #dcdcdc;
  background-color: #fff;
  content: "";
}
.checkbox__custom input[type="checkbox"] {
  display: none;
}
.checkbox__custom input[type="checkbox"]:checked + span:before {
  position: absolute;
  top: 0;
  left: -18px;
  display: block;
  content: "";
  content: "\f00c";
  font-family: 'FontAwesome';
  font-size: 14px;
  color: #0376c8;
  font-style: normal;
  font-weight: normal;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;

}
.checkbox__custom.checkbox__style2 label:before {
  background: #0376c8;
  border-color: #0376c8;
}
.checkbox__custom.checkbox__style2 input[type="checkbox"]:checked + span:before {
  color: #fff;
}
.checkbox__custom.checkbox__style3 input[type="checkbox"]:checked + span:before {
  color: #2f2f2f;
}
.checkbox__custom.checkbox__style4 label:before {
  border-color: #0376c8;
}
.checkbox__custom.checkbox__style4 input[type="checkbox"]:checked + span:before {
  color: #0376c8;
}

/*checkboxes end*/

/* Radio Button */
.radio__custom label {
  display: inline-block;
  cursor: pointer;
  position: relative;
  padding-left: 5px;
}
.radio__custom label:before {
  position: absolute;
  top: 1px;
  left: -20px;
  display: inline-block;
  margin-right: 10px;
  width: 18px;
  height: 18px;
  border: 1px solid #dcdcdc;
  border-radius: 50%;
  background-color: #fff;
  content: "";
}
.radio__custom input[type="radio"] {
  display: none;
}
.radio__custom input[type="radio"]:checked + span:before {
  position: absolute;
  top: 6px;
  left: -15px;
  display: block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #0376c8;
  content: "";
}
.radio__custom.radio__style2 label:before {
  background: #0376c8;
  border-color: #0376c8;
}
.radio__custom.radio__style2 input[type="radio"]:checked + span:before {
  background: #fff;
}
.radio__custom.radio__style3 input[type="radio"]:checked + span:before {
  background: #2f2f2f;
}
.radio__custom.radio__style4 label:before {
  border-color: #0376c8;
}
.radio__custom.radio__style4 input[type="radio"]:checked + span:before {
  background: #0376c8;
}

/*radio buttons end*/
/*widget code
.widget__sidebar a:link {
    color: #00a9a1;
	text-decoration: none;
}

.widget__sidebar a:visited {
    color: #00a9a1;
	text-decoration: none;
}

.widget__sidebar a:hover {
  color: #000000;
  text-decoration: underline;
}

.page-heading a:link {
    color:#ffffff;
	text-decoration: none;
}

.page-heading a:visited {
    color:#ffffff;
	text-decoration: none;
}

.widget__footer a:visited {
    color:#ffffff;
	text-decoration: none;
}

.widget__footer a:link {
    color:#ffffff;
	text-decoration: none;
}*/

.footer-copyright a:link {
    color:#ffffff;
	text-decoration: none;
}

.footer-copyright a:visited {
    color:#ffffff;
	text-decoration: none;
}

/* #Links
// --------------------------------------------------
*/

.featured-item .featured-link {
  text-align: left;
  width: 100%;
  height: 100%;
  display: block;
  position: relative;
  color: #fff;
}

.featured-item:hover {
    background-color: #32cd32;
  }

/* Left marging for "list" class*/
.list ul li {
    position: relative;
    margin-left: 20px;
}

/* Left marging for "list2" class*/
.list2 ul li {
    position: relative;
    margin-left: 0px;
}

.list2 {
  overflow: hidden;
}
.list2 ul {
  padding-left: 0;
  list-style: none;
  margin-bottom: 1.5em;
}
.list2 ul li {
  position: relative;
  padding: 0 0 8px 20px;
}
.list2 ul li:before {
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  content: "\f0da";
  font-family: 'FontAwesome';
  font-size: 14px;
  color: #0376c8;
  margin-right: 10px;
  font-style: normal;
  font-weight: normal;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.list2.list__lg {
  font-size: 14px;
}
.list2.list__lg ul li {
  padding: 4px 0 25px 50px;
}
.list2.list__lg ul li:before {
  width: 28px;
  height: 28px;
  border: 1px solid #0376c8;
  border-radius: 2px;
  text-align: center;
  line-height: 26px;
  content: "\f00c";
}
.list2 ol {
  padding-left: 20px;
  list-style: none;
  margin-bottom: 1.5em;
  counter-reset: counter;
}
.list2 ol li {
  position: relative;
  padding: 0 0 8px 20px;
}
.list2 ol li:before {
  display: inline-block;
  /* block would also work */
  position: absolute;
  /* move this out of the way of the text*/
  left: 0;
  /* move the counter labe into the space from the padding */
  content: counter(counter) ". ";
  counter-increment: counter;
  font-weight: bold;
  width: 20px;
  color: #0376c8;
}








/*call out format*/


.buttonscontainer-rr {width: 100px;}

.buttons-rr a {color: #ffffff;
padding: 2px;
padding-left: 4px;
display: block;
font: 12px Arial Narrow, sans-serif;
font-weight: bold;
text-decoration: none;
text-align: left;}

.buttons-rr a:hover {
color: #0376c8;
font-weight: bold;
text-decoration: none;}


.buttonscontainer-cert {width: 100px;}

.buttons-cert a {color: #00000;
padding: 2px;
padding-left: 4px;
display: block;
font: 12px Arial, sans-serif;
font-weight: bold;
text-decoration: none;
text-align: left;}

.buttons-cert a:hover {
color: #ffffff;
font-weight: bold;
text-decoration: none;}



.buttonscontainer-cert-sp {width: 100px;}

.buttons-cert-sp a {color: #ffffff;
padding: 0px;
padding-left: 4px;
display: block;
font: 12px Arial, sans-serif;
font-weight: bold;
text-decoration: none;
text-align: center;}

.buttons-cert-sp a:hover {
color: #A4ADBF;
font-weight: bold;
text-decoration: none;}



.buttonscontainer-sp {width: 125px;}

.buttons-sp a {color: #ffffff;
padding: 0px;
display: block;
font: 12px Arial, sans-serif;
font-weight: bold;
text-decoration: none;
text-align: center;}

.buttons-sp a:hover {
color: #D53403;
font-weight: bold;
text-decoration: none;}


.buttonscontainer-se {width: 125px;}

.buttons-se a {color: #ffffff;
padding: 0px;
display: block;
font: 12px Arial, sans-serif;
font-weight: bold;
text-decoration: none;
text-align: center;}

.buttons-se a:hover {
color: #f2c779;
font-weight: bold;
text-decoration: none;}


.buttonscontainer-tc {width: 100px;}

.buttons-tc a {color: #FFFFFF;
padding: 0px;
padding-left: 4px;
display: block;
font: 12px Arial, sans-serif;
font-weight: bold;
text-decoration: none;
text-align: center;}

.buttons-tc a:hover {
color: #ffffff;
font-weight: bold;
text-decoration: none;}


.list-p ul li {
    position: relative;
    padding: 0 0 8px 20px;
}


/*  Portfolio Description  */
.project-desc2 {
  text-align: left;
  padding: 25px 20px;
}
.project-desc2 .title {
  margin-bottom: 5px;
}
.project-desc2 .title > a {
  color: #2f2f2f;
}

.products .product .project-item-inner2 {
  position: relative;
}
.products .product .project-desc2 {
  text-align: left;
}
.products .product .project-desc2 .title {
  margin-bottom: .10em;
  margin-top: .10em;  
}

/*Contact Form fields adjustments on the Home Page*/

.form-group2 {
    margin-bottom: 30px;
}

/* Tooltip container */
.tooltip {
  position: relative;
  display: inline-block;
  border-bottom: 1px dotted black; /* If you want dots under the hoverable text */
}

/* Tooltip text */
.tooltip {
    position: relative;
    display: inline-block;
    border-bottom: 1px dotted #ccc;
    zcursor: help;
    color: #006080;
}
.tooltip .tooltiptext {
    visibility: hidden;
    position: absolute;
    width: 120px;
    background-color: #555;
    color: #fff;
    text-align: center;
    padding: 5px 0;
    border-radius: 6px;
    z-index: 1;
    opacity: 0;
    transition: opacity .6s;
}
.tooltip:hover .tooltiptext {
    visibility: visible;
    opacity: 1;
}
.tooltip .tooltiptext2 {
    visibility: hidden;
    position: absolute;
    width: 120px;
    background-color: #555;
    color: #fff;
    text-align: center;
    padding: 5px 0;
    border-radius: 6px;
    z-index: 1;
}
.tooltip:hover .tooltiptext2 {
    visibility: visible;
}
.tooltip-right {
  top: -5px;
  left: 125%;  
}
.tooltip-right2 {
  top: -5px;
  left: 105%;  
}

.tooltip-right::after {
    content: "";
    position: absolute;
    top: 50%;
    right: 100%;
    margin-top: -5px;
    border-width: 5px;
    border-style: solid;
    border-color: transparent #555 transparent transparent;
}

.tooltip-bottom {
  top: 135%;
  left: 50%;  
  margin-left: -60px;
}

.tooltip-bottom2 {
  top: 125%;
  left: 50%;  
  margin-left: -60px;
}

.tooltip-bottom::after {
    content: "";
    position: absolute;
    bottom: 100%;
    left: 50%;
    margin-left: -5px;
    border-width: 5px;
    border-style: solid;
    border-color: transparent transparent #555 transparent;
}

.tooltip-top {
  bottom: 125%;
  left: 50%;  
  margin-left: -60px;
}
.tooltip-top2 {
  bottom: 115%;
  left: 50%;  
  margin-left: -60px;
}

.tooltip-top::after {
    content: "";
    position: absolute;
    top: 100%;
    left: 50%;
    margin-left: -5px;
    border-width: 5px;
    border-style: solid;
    border-color: #555 transparent transparent transparent;
}

.tooltip-left {
  top: -5px;
  bottom:auto;
  right: 128%;  
}

.tooltip-left2 {
  top: -5px;
  bottom:auto;
  right: 105%;  
}

.tooltip-left::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 100%;
    margin-top: -5px;
    border-width: 5px;
    border-style: solid;
    border-color: transparent transparent transparent #555;
}

.tooltip .tooltiptext-bottomarrow {
    visibility: hidden;
    width: 120px;
    background-color: #111;
    color: #fff;
    text-align: center;
    border-radius: 6px;
    padding: 5px 0;
    position: absolute;
    z-index: 1;
    bottom: 130%;
    left: 50%;
    margin-left: -60px;
}
.tooltip .tooltiptext-bottomarrow::after {
    content: "";
    position: absolute;
    top: 100%;
    left: 50%;
    margin-left: -5px;
    border-width: 5px;
    border-style: solid;
    border-color: black transparent transparent transparent;
}
.tooltip:hover .tooltiptext-bottomarrow {
    visibility: visible;
}

.tooltip .tooltiptext-toparrow {
    visibility: hidden;
    width: 120px;
    background-color: #111;
    color: #fff;
    text-align: center;
    border-radius: 6px;
    padding: 5px 0;
    position: absolute;
    z-index: 1;
    top: 150%;
    left: 50%;
    margin-left: -60px;
}
.tooltip .tooltiptext-toparrow::after {
    content: "";
    position: absolute;
    bottom: 100%;
    left: 50%;
    margin-left: -5px;
    border-width: 5px;
    border-style: solid;
    border-color: transparent transparent black transparent;
}
.tooltip:hover .tooltiptext-toparrow {
    visibility: visible;
}

.tooltip .tooltiptext-leftarrow {
    visibility: hidden;
    width: 120px;
    background-color: #111;
    color: #fff;
    text-align: center;
    border-radius: 6px;
    padding: 5px 0;
    position: absolute;
    z-index: 1;
    top: -5px;
    left: 110%;
}
.tooltip .tooltiptext-leftarrow::after {
    content: "";
    position: absolute;
    top: 50%;
    right: 100%;
    margin-top: -5px;
    border-width: 5px;
    border-style: solid;
    border-color: transparent black transparent transparent;
}
.tooltip:hover .tooltiptext-leftarrow {
    visibility: visible;
}
.tooltip .tooltiptext-rightarrow {
    visibility: hidden;
    width: 120px;
    background-color: #111;
    color: #fff;
    text-align: center;
    border-radius: 6px;
    padding: 5px 0;
    position: absolute;
    z-index: 1;
    top: -5px;
    right: 110%;
}
.tooltip .tooltiptext-rightarrow::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 100%;
    margin-top: -5px;
    border-width: 5px;
    border-style: solid;
    border-color: transparent transparent transparent black;
}
.tooltip:hover .tooltiptext-rightarrow {
    visibility: visible;
}
/*Change padding above the logos on Certification Search page*/
.page-content2 {
    padding-top: 20px;
}

/*Remove background and border around images*/

.aligncenter2 img {
    margin: 0 auto 20px auto;
}
.alignleft2 img, .alignright2 img, .alignnone2 img, .aligncenter2 img {
    padding: 6px;
    /* background-color: #e5e5e5; */
    /* border: 1px solid #cecece; */
    border-radius: 0;
    -webkit-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
    max-width: 100%;
    height: auto;
}


.alignleft2,
.alignright2,
.alignnone2,
.aligncenter2 {
  text-align: center;
}
.alignleft2 img,
.alignright2 img,
.alignnone2 img,
.aligncenter2 img {
  padding: 6px;
  
  border-radius: 0;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  max-width: 100%;
  height: auto;
}
@media (max-width: 767px) {
  .alignleft2 img,
  .alignright2 img,
  .alignnone2 img,
  .aligncenter2 img {
    float: none !important;
    margin: 0 auto;
  }
}
@media (max-width: 767px) {
  .alignleft2:before,
  .alignright2:before,
  .alignnone2:before,
  .aligncenter2:before,
  .alignleft2:after,
  .alignright2:after,
  .alignnone2:after,
  .aligncenter2:after {
    content: " ";
    display: table;
  }
  .alignleft2:after,
  .alignright2:after,
  .alignnone2:after,
  .aligncenter2:after {
    clear: both;
  }
}
.alignleft2 img {
  float: left;
  margin: 0 20px 10px 0;
}
.alignright2 img {
  float: right;
  margin: 0 0 10px 20px;
}
.aligncenter2 {
  display: block;
  text-align: center;
}
.aligncenter2 img {
  margin: 0 auto 20px auto;
}
.alignnone2 img {
  margin: 0 0 20px 0;
}
/* Video Holder */
.video-holder,
.audio-holder {
  padding: 6px;
  background-color: #e5e5e5;
  border: 1px solid #cecece;
  border-radius: 0;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  max-width: 100%;
  height: auto;
}

/*Hide logos on top on the certification pages when viewed on mobile devices*/

.content-desktop {display: block;}
.content-mobile {display: none;}

@media screen and (max-width: 768px) {

.content-desktop {display: none;}
.content-mobile {display: block;}

}

/*Vertical line for a container*/

.robust-info-page-body {
    border-left: 1px solid #0071bc;
}

/*Magazine slider on why-join page.  Changed padding from 40 to 0. Changed border-top from 5 to 0 */

.magazine-slider-holder {
    padding: 0px 0 0 0;
    border-top: 0px solid #d4d4d4;
    position: relative;
    overflow: hidden;
    margin-bottom: -24px;
}

/*Magazine slider on why-join page.  Changed height from 1 to 0. */
.magazine-slider-holder:before {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 0px;
  background: #bebebe;
}